[BangPypers] array in python

2009-10-08 Thread harshal jadhav
Hi Everybody, I am Harshal Jadhav, student at San Jose State University. I am using Python for my Master's project and i am a beginner. I am using python language for GNU Radio. For this i have a sampled signal. The signal is a sine wave. I have to trap each sample of this sine wave in an

Re: [BangPypers] array in python

2009-10-08 Thread Anand Chitipothu
Harshal, I don't think anybody in this mailing list has experience with GNU Radio. Have you tried asking in GNU Radio mailing lists? http://gnuradio.org/trac/wiki/MailingLists Anand On Thu, Oct 8, 2009 at 6:15 AM, harshal jadhav jadhav.hars...@gmail.com wrote: Hi Everybody, I am Harshal

Re: [BangPypers] array in python

2009-10-08 Thread Anand Balachandran Pillai
On Thu, Oct 8, 2009 at 6:15 AM, harshal jadhav jadhav.hars...@gmail.comwrote: Hi Everybody, I am Harshal Jadhav, student at San Jose State University. I am using Python for my Master's project and i am a beginner. I am using python language for GNU Radio. For this i have a sampled signal.

Re: [BangPypers] array in python

2009-10-08 Thread Vivek Khurana
On Thu, Oct 8, 2009 at 6:15 AM, harshal jadhav jadhav.hars...@gmail.com wrote: Hi Everybody, I am Harshal Jadhav, student at San Jose State University. I am using Python for my Master's project and i am a beginner. I am using python language for GNU Radio. For this i have a sampled signal.

Re: [BangPypers] array in python

2009-10-08 Thread Mandar Gokhale
in Python. -Mandar ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] array in python

2009-10-08 Thread Jeff Rush
Vivek Khurana wrote: On Thu, Oct 8, 2009 at 6:15 AM, harshal jadhav jadhav.hars...@gmail.com wrote: Hi Everybody, I am Harshal Jadhav, student at San Jose State University. I am using Python for my Master's project and i am a beginner. I am using python language for GNU Radio. For this i

Re: [BangPypers] array in python

2009-10-08 Thread Roshan Mathews
On Thu, Oct 8, 2009 at 6:15 AM, harshal jadhav jadhav.hars...@gmail.com wrote: I am using python language for GNU Radio. For this i have a sampled signal. The signal is a sine wave. I have to trap each sample of this sine wave in an array. Is it possible to capture the samples of the sine wave

Re: [BangPypers] array in python

2009-10-08 Thread Anil
Jeff Rush wrote: None of the above is suitable for signal processing in Python, for (1) speed of loading data into memory, (2) operating on it and (3) storing it efficiently in memory (since you tend to have a lot of it). I would use the 'array' type in the stdlib or better still, the array

Re: [BangPypers] array in python

2009-10-08 Thread Anil
Jeff Rush wrote: Vivek Khurana wrote: On Thu, Oct 8, 2009 at 6:15 AM, harshal jadhav jadhav.hars...@gmail.com wrote: Hi Everybody, I am Harshal Jadhav, student at San Jose State University. I am using Python for my Master's project and i am a beginner. I am using python language for