Being a Matlab user wanting to switch to Python/SciPy, I'd like to
know how the following Matlab code would be written in Python:
% First, just some artificial data
N = 100 ;
input = sign(randn(1, N)) ;
a = (1 : N) ;
% This is what I'd like to do;
% for indices where the input has a certain va
Thanks a lot for your reply.
I'll have a look at the numpy-discussion for future issues.
FYI, I'm using Python 2.4.3 for Windows (Enthought Edition) and the
included IPython shell. I found my mistake; importing of pylab.
E.g., this works
from pylab import * ; from scipy import * ; y = arange(3) ;
As a Python introduction exercise, I plan to write a script to
automatically rename my music files according to the information in
the ID3 tag (v2.X), and update the tag if necessary.
To read/write ID3 tags, I found the eyeD3 library (http://
eyed3.nicfit.net/).
However, I could not find any downlo
I'm trying to use PAMIE to login to a website:
import cPAMIE
# python.org - just a test, works fine
ie = cPAMIE.PAMIE()
website = "http://www.python.org";
ie.navigate(website)
ie.textBoxSet('q', 'pamie')
ie.buttonClick('submit')
# expekt.com - this is what I want to do, but it fails
ie = cPAMIE.
On 15 Mai, 16:25, "Tim Williams" <[EMAIL PROTECTED]> wrote:
> The frame URL ishttp://www.expekt.com/contenttop.jsp, you could try
> navigating directly to the frame to see if it helps
>
> website = "http://www.expekt.com/contenttop.jsp";
> ie.navigate(website)
> ie.textBoxSet('user', 'MyLogin')
>
Hi.
I would like to perform some image processing using Python.
Can someone please point me in the right direction on how to get
images from the framegrabber (Alacron FastFrame-CB)?
Is VideoCapture (http://videocapture.sourceforge.net/) the correct way
to go?
Thanks in advance.
--
http://mail.py