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 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 ha

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 typ

Re: [BangPypers] array in python

2009-10-08 Thread Roshan Mathews
On Thu, Oct 8, 2009 at 6:15 AM, harshal jadhav 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 inĀ  an array in > py

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 > 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 s

Re: [BangPypers] array in python

2009-10-07 Thread Mandar Gokhale
If you want to actually capture and demodulate signals, you will need some sort of a RF frontend to get the data into the computer, and then process it using GNURadio. Otherwise, if you are just using simulated signals, it should be a fairly simple simple matter to store a sine wave in an array in

Re: [BangPypers] array in python

2009-10-07 Thread Vivek Khurana
On Thu, Oct 8, 2009 at 6:15 AM, harshal jadhav 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. > The signal is a

Re: [BangPypers] array in python

2009-10-07 Thread Asokan Pichai
I think this may be of help http://www.ar.media.kyoto-u.ac.jp/members/david/softwares/index.html Look at the second item AudioLab in that page On Thu, Oct 8, 2009 at 6:15 AM, harshal jadhav wrote: > Hi Everybody, > > I am Harshal Jadhav, student at San Jose State University. > > I am using Pyt

Re: [BangPypers] array in python

2009-10-07 Thread Anand Balachandran Pillai
On Thu, Oct 8, 2009 at 6:15 AM, harshal jadhav 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. > The signal is a

Re: [BangPypers] array in python

2009-10-07 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 wrote: > Hi Everybody, > > I am Harshal Jadhav, student at San Jo

[BangPypers] array in python

2009-10-07 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 array.