Re: [Discuss-gnuradio] Wideband Spectrum Analyzer

2010-01-12 Thread Josh Blum
See how the logpwrfft in gnuradio adjusts for different windows and fft lengths: http://gnuradio.org/redmine/repositories/entry/gnuradio/gnuradio-core/src/python/gnuradio/blks2impl/logpwrfft.py -Josh kyung...@nec-labs.com wrote: Hello I wonder someone can help me out. While testing this code

Re: Re: [Discuss-gnuradio] Wideband Spectrum Analyzer

2010-01-12 Thread kyungtae
Hello I wonder someone can help me out. While testing this code, the media with the different size of fft shows different value. I would like to know how I can get the same media value regardless of using different fft size. Thanks, Kyungtae-- Santix wrote : media=str(mean(m.data))

Re: [Discuss-gnuradio] Wideband Spectrum Analyzer

2009-06-23 Thread Dan Rosenqvist
shesh wrote: > > Firas, > have to written a detailed explanation about "usrp_spectrum_sense.py" ? I > am unable to find it. Please let us know the link for the same... > > Shesh > > http://www.nabble.com/Some-usrp_spectrum_sense.py-code-Explanation-td21209623.html#a21209623 -- View this m

Re: [Discuss-gnuradio] Wideband Spectrum Analyzer

2009-06-23 Thread shesh
Firas, have to written a detailed explanation about "usrp_spectrum_sense.py" ? I am unable to find it. Please let us know the link for the same... Shesh Firas A. wrote: > > Hi, > >> Santi Ortega wrote : >> >> ok, so I have to modify this program to show in a Frame the results I >> want, hav

Re: [Discuss-gnuradio] Wideband Spectrum Analyzer

2008-11-05 Thread Santix
Hi everybody! I have modified usrp_spectrum_sense.py to plot the results with gnuplot. There are two files: widespectrum.py and plot.p I would like everybody to test it and report me the errors and how can I improve it. I've used USRPv1 + Flex2400. Thanks in advance! Here it goes... WIDESPECTR

[Discuss-gnuradio] Wideband Spectrum Analyzer

2008-11-04 Thread Santi Ortega
Hi everybody! I have modified usrp_spectrum_sense.py to plot the results with gnuplot. There are two files: widespectrum.py and plot.p I would like everybody to test it and report me the errors and how can I improve it. I've used USRPv1 + Flex2400. Thanks in advance! Here it goes... *WIDESPECTR

Re: [Discuss-gnuradio] Wideband Spectrum Analyzer

2008-10-28 Thread Eric Blossom
On Tue, Oct 28, 2008 at 11:43:15AM +, Santi Ortega wrote: > *USRP_SPECTRUM_SENSE.PY* > > How can I use the *self.max_freq* and *self.min_freq* like a global > variable? > I want to use it in the *def main_loop(tb):* > but if I use it Please see the Python tutorial. It and lots of other good

Re: [Discuss-gnuradio] Wideband Spectrum Analyzer

2008-10-28 Thread Santi Ortega
*USRP_SPECTRUM_SENSE.PY* How can I use the *self.max_freq* and *self.min_freq* like a global variable? I want to use it in the *def main_loop(tb):* but if I use it *That's the given error:* *Traceback (most recent call last): File "./spectrum_output.py", line 309, in main_loop(tb) File "

Re: [Discuss-gnuradio] Wideband Spectrum Analyzer

2008-10-22 Thread Santi Ortega
I obtain this plot from 2.23GHz to 2.90GHz (with a Flex2400) but I don't know how to put the correct frecuency on the x axis. Because if I put this: g('set xrange[223000:29]') # I can't see anything! To plot I have done this: g = Gnuplot.Gnuplot(debug=1) # Out of the while loop g

Re: [Discuss-gnuradio] Wideband Spectrum Analyzer

2008-10-14 Thread Firas A.
Hi, > Santi Ortega wrote : > > ok, so I have to modify this program to show in a Frame the results I > want, haven't I? Yes, OR, you can wait for me to write a detailed explanation (may be in two weeks) about "usrp_spectrum_sense.py". I think the understanding of this program is very important

Re: [Discuss-gnuradio] Wideband Spectrum Analyzer

2008-10-14 Thread Santi Ortega
ok, so I have to modify this program to show in a Frame the results I want, haven't I? 2008/10/14 Brian Padalino <[EMAIL PROTECTED]> > On Tue, Oct 14, 2008 at 11:33 AM, Santi Ortega > <[EMAIL PROTECTED]> wrote: > > ok, but this program doesn't show you anything... just uOuOuO... > > Please refere

Re: [Discuss-gnuradio] Wideband Spectrum Analyzer

2008-10-14 Thread Brian Padalino
On Tue, Oct 14, 2008 at 11:33 AM, Santi Ortega <[EMAIL PROTECTED]> wrote: > ok, but this program doesn't show you anything... just uOuOuO... Please reference: http://gnuradio.org/trac/wiki/UsrpFAQ/Gen#OUuainoutput Brian ___ Discuss-gnuradio maili

Re: [Discuss-gnuradio] Wideband Spectrum Analyzer

2008-10-14 Thread Santi Ortega
ok, but this program doesn't show you anything... just uOuOuO... 2008/10/14 Firas Abbas <[EMAIL PROTECTED]> > Hi, > > > > *Santi Ortega <[EMAIL PROTECTED]>* wrote: > > > > Yes, but I think we can take the spectrum of every 8MHz band and put it > into the > > computer so it can memorize and show i

Re: [Discuss-gnuradio] Wideband Spectrum Analyzer

2008-10-14 Thread Firas Abbas
Hi, > Santi Ortega <[EMAIL PROTECTED]> wrote: > > Yes, but I think we can take the spectrum of every 8MHz band and put it into > the > computer so it can memorize and show it. See usrp_spectrum_sense.py, it implements this technique to scan the entire spectrum available to each USRP daughter

Re: [Discuss-gnuradio] Wideband Spectrum Analyzer

2008-10-14 Thread Santi Ortega
Yes, but I think we can take the spectrum of every 8MHz band and put it into the computer so it can memorize and show it. Sorry for my english... 2008/10/14 Dimitris Symeonidis <[EMAIL PROTECTED]> > santi, such a wide frequency range is not possible due to limitations > in the bandwidth between

Re: [Discuss-gnuradio] Wideband Spectrum Analyzer

2008-10-14 Thread Dimitris Symeonidis
santi, such a wide frequency range is not possible due to limitations in the bandwidth between the usrp and the host currently you give usrp_fft a center frequency and a decimation rate, and from that it calculates the start and end frequencies... Dimitris Symeonidis "If you think you're too small

[Discuss-gnuradio] Wideband Spectrum Analyzer

2008-10-14 Thread Santi Ortega
Hi! I need help to modify the usrp_fft.py file to show the spectrum of a input range (for example from 2.3GHz to 2.9GHz) ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio