[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.

[BangPypers] [x-post] Language Pages on the wiki

2009-10-08 Thread vid
[x-posted to bangpypers and inpycon] Hi Folks, http://wiki.python.org/moin/NewLanguagePage , has a collection of various language pages for Python. Please provide links to any Python related article/tutorial in your native language and feel free to create a new page if your language is not

Re: [BangPypers] array in python

2009-10-08 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-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] [ANN][X-Post] SciPy India conference in Dec. 2009

2009-10-08 Thread Vivek Khurana
On Wed, Oct 7, 2009 at 3:16 PM, Kenneth Gonsalves law...@au-kbc.org wrote: django, plone has about one issue every two years - usually minor and not affecting anything critical. There is something radically wrong in a software that gets one core critical issue a month (even then drupal is

Re: [BangPypers] [ANN][X-Post] SciPy India conference in Dec. 2009

2009-10-08 Thread Kenneth Gonsalves
On Wednesday 07 Oct 2009 3:41:38 pm Vivek Khurana wrote: On Wed, Oct 7, 2009 at 3:16 PM, Kenneth Gonsalves law...@au-kbc.org wrote: django, plone has about one issue every two years - usually minor and not affecting anything critical. There is something radically wrong in a software that

Re: [BangPypers] SciPy India 2009 - SciPy.in

2009-10-08 Thread Kadambari Devarajan
Hi All, On Wed, Oct 7, 2009 at 2:19 PM, Kadambari Devarajan kadambari.devara...@gmail.com wrote: On Tue, Oct 6, 2009 at 9:13 AM, Anand Balachandran Pillai abpil...@gmail.com wrote: Yes, it surely is more Sci than Py I would say. Still, it would be a good conf for engineers and

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

Re: [BangPypers] [ANN][X-Post] SciPy India conference in Dec. 2009

2009-10-08 Thread Vivek Khurana
On Wed, Oct 7, 2009 at 4:09 PM, Kenneth Gonsalves law...@au-kbc.org wrote: http://demo.ilugc.org.in and http://demo.ilugc.in The drupal site is looking more pleasing. And it is not that you have to spend sleepless nights. One upgrade a month is more than sufficient to keep system up to date

[BangPypers] User group meeting on Sunday?

2009-10-08 Thread Noufal Ibrahim
Is Sunday afternoon fine with everyone? Say 3-5 or so? As for the venue, it'd be nice to have it at ThoughtWorks if it's available. After our initial plan to hold PyCon, I don't think we've ever met there. Will it be available? -- ~noufal http://nibrahim.net.in

Re: [BangPypers] User group meeting on Sunday?

2009-10-08 Thread Noufal Ibrahim
On Thu, Oct 8, 2009 at 10:31 PM, Baiju M mba...@zeomega.com wrote: On Thu, Oct 8, 2009 at 9:17 PM, Noufal Ibrahim nou...@gmail.com wrote: Is Sunday afternoon fine with everyone? Say 3-5 or so? I will be available this weekend, so I can attend. But we should try to announce bit earlier, at

[BangPypers] line understanding problem

2009-10-08 Thread harshal jadhav
Hi I want to play the following program : from gnuradio import gr from gnuradio import audio from gnuradio.eng_option import eng_option from optparse import OptionParser class my_top_block(gr.top_block): def __init__(self): gr.top_block.__init__(self) parser =

Re: [BangPypers] Anyone worked on GNuRadio out here?

2009-10-08 Thread Shivaraj M S
I hope you have found the solution . If not read on. I followed http://gnuradio.org/trac/wiki/UbuntuInstall and was able to reproduce the error. The issue is http://osdir.com/ml/patch-gnuradio-gnu/2009-08/msg0.html cspesit wrote: Hi guys, Working on a GNUradio project. Following

Re: [BangPypers] line understanding problem

2009-10-08 Thread Pradeep Gowda
On Thu, Oct 8, 2009 at 11:22 PM, harshal jadhav jadhav.hars...@gmail.com wrote: though i get the output but i also get the following statement gr_block sig_source_f (1) i donot understand what this line means. My aim is to capture the samples of src0. for that purpose i have given print src0

Re: [BangPypers] User group meeting on Sunday?

2009-10-08 Thread ashok raavi
On Fri, Oct 9, 2009 at 8:44 AM, Anand Balachandran Pillai abpil...@gmail.com wrote: On Thu, Oct 8, 2009 at 10:44 PM, Noufal Ibrahim nou...@gmail.com wrote: On Thu, Oct 8, 2009 at 10:31 PM, Baiju M mba...@zeomega.com wrote: On Thu, Oct 8, 2009 at 9:17 PM, Noufal Ibrahim nou...@gmail.com

Re: [BangPypers] User group meeting on Sunday?

2009-10-08 Thread Noufal Ibrahim
Will some of the TW guys be around to chaperon the meeting? Sidu? -- ~noufal http://nibrahim.net.in ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] User group meeting on Sunday?

2009-10-08 Thread Ashutosh Narayan
Hi, I will there for the meeting. ~ Ashutosh --- On Fri, 10/9/09, ashok raavi ashok.ra...@gmail.com wrote: From: ashok raavi ashok.ra...@gmail.com Subject: Re: [BangPypers] User group meeting on Sunday? To: Bangalore Python Users Group - India bangpypers@python.org Date: Friday, October 9,

Re: [BangPypers] web services

2009-10-08 Thread goldgod a
Hi, I was trying SOAP web services.How to construct . Just try with Soaplib. It is an easy to use python library for writing and calling soap web services. Refer: http://trac.optio.webfactional.com/ examples: http://trac.optio.webfactional.com/wiki/soaplib -- Thanks Regards, A.Ponnusamy