Re: [Tutor] fourier transform

2005-07-29 Thread Danny Yoo
On Fri, 29 Jul 2005, Jeff Peery wrote: > Hello, I have a signal that I want to do a fourier transform on. I tried > using FFT.fft(data).real but I don't understand the output. what is > output from this function, and why doesn't it require amplitude and time > as inputs? Hi Jeff, Do you mean

Re: [Tutor] OT: we won't eat VB programmers for lunch [Was: How doImake Python draw?]

2005-07-29 Thread Nathan Pinno
I got it Alan. It was good. Thanks. - Original Message - From: "Alan G" <[EMAIL PROTECTED]> To: "Nathan Pinno" <[EMAIL PROTECTED]>; "Tutor" Sent: Thursday, July 28, 2005 4:15 AM Subject: Re: [Tutor] OT: we won't eat VB programmers for lunch [Was: How doImake Python draw?] > Nathan, > >

[Tutor] fourier transform

2005-07-29 Thread Jeff Peery
Hello, I have a signal that I want to do a fourier transform on. I tried using FFT.fft(data).real but I don't understand the output.  what is output from this function, and why doesn't it require amplitude and time as inputs?   thanks.___ Tutor maillist

Re: [Tutor] try except continue

2005-07-29 Thread Ewald Ertl
Hi! I think you just want to execute the rest of the function's in someProcedure(). Perhaps this could be the solution, what you want: >>> def someProcedure(): ... for func in [ someFunc00, someFunc01, someFunc02, someFunc03 ]: ... try: ... func() ...

Re: [Tutor] try except continue

2005-07-29 Thread Alan G
> I don't believe I am ignoring the error. If you log it and then immediately continue then you are ignoring it so far as the program is concerned. The logging is only significant to you after the program completes. > the error and pick up where it left off and keep going. > I gather you think th