[Discuss-gnuradio] Update to GSoC Poposal, Signal Analysis and Visualization Tool

2014-03-20 Thread Dean Nida
I got some good comments and feedback on my GSoC proposal. I updated it and it is available here: https://docs.google.com/document/d/1D4L2mfbuubQiiPQimguDsTGT_SVz831eUa3NVN8Kvqg/edit?usp=sharing Thanks, Dean ___ Discuss-gnuradio mailing list Discuss-gnu

Re: [Discuss-gnuradio] UHD blocks

2014-03-20 Thread Marcus Müller
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Sara, although that guide is correct (it just uses the popular and well-working build-gnuradio script), I'm always a little surprised where people find information. For later reference: The official GNU Radio website is http://gnuradio.org/ and the

Re: [Discuss-gnuradio] UHD blocks

2014-03-20 Thread Marcus D. Leech
On 03/20/2014 03:56 PM, Sara Chérif wrote: My friend has installed GNU Radio from this link http://blogs.bu.edu/mhirsch/2012/07/installing-gnu-radio-in-ubuntu-12-04-x64/comment-page-1/ Then when running GNURadio , she found UHD blocks in it . 1- Does this mean that this link has installed GNURa

[Discuss-gnuradio] UHD blocks

2014-03-20 Thread Sara Chérif
My friend has installed GNU Radio from this link http://blogs.bu.edu/mhirsch/2012/07/installing-gnu-radio-in-ubuntu-12-04-x64/comment-page-1/ Then when running GNURadio , she found UHD blocks in it . 1- Does this mean that this link has installed GNURadio & UHD on Ubuntu , and that there is no ne

Re: [Discuss-gnuradio] VOLK - vector multiplication

2014-03-20 Thread Martin Braun
On 03/20/2014 07:16 PM, Nasi wrote: > I've got this error: > > > /tmp/ccE79VRG.o: In function `main': > > t2_rx_ompalg.cc:(.text+0x6a5): undefined reference to > `volk_32fc_x2_dot_prod_32fc' > collect2: error: ld returned 1 exit status > > I was running it inside main function as > > g++ -std=

Re: [Discuss-gnuradio] rx_ofdm Does Not Work Past Synchronizer

2014-03-20 Thread Martin Braun
On 03/20/2014 05:14 PM, Jonathan Fox wrote: > So I found the loopback script, tied the ends together with a multiply > const block and was successful in modding and demodding that sinusoidal > waveform. Added a UHD source and sink, success again. Then I split the > process into two separate GRC fil

Re: [Discuss-gnuradio] VOLK - vector multiplication

2014-03-20 Thread Nasi
I've got this error: /tmp/ccE79VRG.o: In function `main': t2_rx_ompalg.cc:(.text+0x6a5): undefined reference to `volk_32fc_x2_dot_prod_32fc' collect2: error: ld returned 1 exit status I was running it inside main function as g++ -std=c++11 t2_rx_ompalg.cc -o t2_rx_ompalg -lm -lfftw3   Do you kn

[Discuss-gnuradio] No Dev Call this March

2014-03-20 Thread Martin Braun
Hi everyone, Sorry for the short notice, but there will be no Dev Call today. With the hackfest, WSR and the recent release, we've been discussing a lot of things all the time, and don't really have important stuff lined up for this call. Cheers, Martin ___

[Discuss-gnuradio] Draft Proposal for MIMO Transceiver

2014-03-20 Thread kunal sankhe
Hello, Below is the link for my proposal for GSoC 14. http://www.google-melange.com/gsoc/proposal/review/student/google/gsoc2014/kunalsankhe/5629499534213120 Please let me know your feedback on this. Thanks and regards, Kunal Sankhe ___ Discuss-gnurad

Re: [Discuss-gnuradio] VOLK - vector multiplication

2014-03-20 Thread Tom Rondeau
On Thu, Mar 20, 2014 at 12:51 PM, Nasi wrote: > Thanks! > > As I see you apply it to the first element of x as in > volk_32fc_something_32fc(&x[0], ...);. > I want to multiply the whole vector like as a inner product of two vectors. > Is it possible? > > - > NE Not sure I exactly follow your comm

Re: [Discuss-gnuradio] VOLK - vector multiplication

2014-03-20 Thread Nasi
Thanks! As I see you apply it to the first element of x as in  volk_32fc_something_32fc(&x[0], ...);. I want to multiply the whole vector like as a inner product of two vectors. Is it possible? - NE Четверг, 20 марта 2014, 10:28 -04:00 от Tom Rondeau : >On Thu, Mar 20, 2014 at 10:09 AM, Adity

Re: [Discuss-gnuradio] Measuring the Level of a Peak in a Signal

2014-03-20 Thread Marcus Müller
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi George, practical implementation aside: Thanks to Parseval's theorem, looking at relative signal strength in frequency and time domain is equivalent. You can just use a number sink or time sink with a low pass filter to visualize the received signa

Re: [Discuss-gnuradio] maxtrix inverse

2014-03-20 Thread Michael Berman
I have had success using armadillo matrix inversions within GNURadio. The only thing you need to be careful of is that when you install the library you need to ensure that you install the hardware accelerated versions of BLAS and LAPACK; I have seen this result in a 200 X slowdown. For a 64*64 ma

[Discuss-gnuradio] [GSoC] proposal - VNA

2014-03-20 Thread Bálint Horváth
Hello Everyone, I am a first year PHd student from TU Budapest. I would like to participate in the GSoC 2014 in the Vector network analyzer project. I have uploaded my proposel to a public repository. Any comments and suggestions are welcome! The link to my repository: https://github.com/horvlint/

Re: [Discuss-gnuradio] rx_ofdm Does Not Work Past Synchronizer

2014-03-20 Thread Jonathan Fox
So I found the loopback script, tied the ends together with a multiply const block and was successful in modding and demodding that sinusoidal waveform. Added a UHD source and sink, success again. Then I split the process into two separate GRC files, a TX and a RX script. Everything works. I am ext

[Discuss-gnuradio] Measuring the Level of a Peak in a Signal

2014-03-20 Thread George S. Williams
I imagine this is doable, but between experimenting and Google I have not been able to find a solution. The application is fairly simple- a FCD is connected to a QT GUI Sink. The FCD is tuned to the pilot frequency of a ATSC television channel. The attached image shows the resulting spectrum. T

Re: [Discuss-gnuradio] catching unrecognized exception

2014-03-20 Thread Marcus Müller
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Nemanja, your except syntax is wrong, most probably you wanted to use "except ExceptionType as e" instead, refer to http://docs.python.org/2/tutorial/errors.html Anyway, have you tried surrounding all your handler code with a try and catch not onl

Re: [Discuss-gnuradio] catching unrecognized exception

2014-03-20 Thread Nemanja Savic
Dear gnuradioers, I would like to ask againi if somebody can help me understand this: thread[thread-per-block[0]: ]: caught unrecognized exception I have two blocks of db_logger type and it looks like only one catch this unrecognized exception and another keeps working fine. best and thank you

Re: [Discuss-gnuradio] VOLK - vector multiplication

2014-03-20 Thread Tom Rondeau
On Thu, Mar 20, 2014 at 10:09 AM, Aditya Dhananjay wrote: > I had the same question. Thanks! :) One thing that I forgot to mention is that VOLK is written purely in C, so C++ vectors as-is won't work. You need to index them, but luckily, std::vector's are guaranteed to be contiguous in memory whe

[Discuss-gnuradio] [GSoC] Proposal for radar toolbox, Update

2014-03-20 Thread Stefan Wunsch
Hi! Thanks a lot for the feedback on the mailings list and on Google Melange! I have integrated your suggestions in the actual proposal on github [1]. Comments are still welcome! I left a note on the Melange page as well. Best regards Stefan W. [1] https://github.com/stwunsch/gsoc-proposal

Re: [Discuss-gnuradio] VOLK - vector multiplication

2014-03-20 Thread Aditya Dhananjay
I had the same question. Thanks! :) On Thu, Mar 20, 2014 at 10:07 AM, Tom Rondeau wrote: > On Thu, Mar 20, 2014 at 7:05 AM, Nasi wrote: > > Hi all, > > > > I am using ubuntu 13.04, GNUradio 3.7. > > I have a question related to VOLK library. > > > > When I create a vector, lets say: > > > > ve

Re: [Discuss-gnuradio] VOLK - vector multiplication

2014-03-20 Thread Tom Rondeau
On Thu, Mar 20, 2014 at 7:05 AM, Nasi wrote: > Hi all, > > I am using ubuntu 13.04, GNUradio 3.7. > I have a question related to VOLK library. > > When I create a vector, lets say: > > vector y1; > > Can I multiply this vector to another vector using VOLK? > Is there any good documentation for thi

Re: [Discuss-gnuradio] maxtrix inverse

2014-03-20 Thread Tom Rondeau
On Thu, Mar 20, 2014 at 7:15 AM, Moritz Fischer wrote: > Well you could implement your Matrix inversion using VOLK, of course. > But to my knowledge you'd have to write the necessary kernels yourself. > > Cheers, > > Moritz No, but it would be nice to have a kernel for that. The caveat is that V

Re: [Discuss-gnuradio] uhd_rx_cfile: getting constant O-overflows using the USRP B200 with debian

2014-03-20 Thread Aditya Dhananjay
Sorry, I do not. On Thu, Mar 20, 2014 at 6:23 AM, Ingmar Splitt < ingmar.spl...@eas.iis.fraunhofer.de> wrote: > Hi Aditya, > > > > Thanks for your reply. Today I got the chance to measure the lower > samplerates and here are the results: > > I measured the writingspeed on disk and the number of

[Discuss-gnuradio] GSoC: 2 Items

2014-03-20 Thread Michael Dickens
We have a great selection of GSoC'14 proposals coming in! Here are a couple quick reminders, primarily for GSoC students (but, everyone can benefit): 1) Please note that the deadline for submitting your proposal to Google Melange is Friday, March 21, 19:00 UTC. 2) If you update your proposal o

[Discuss-gnuradio] [GSoC] Proposal: Measurement Toolbox

2014-03-20 Thread Marcus Müller
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello community, I've just pushed all changes to my GSoC proposal for a Measurement Toolbox. You can get the full PDF on https://github.com/marcusmueller/gsoc14-proposal/blob/master/gsoc14-proposal-mueller-announce.pdf?raw=true or of course access t

Re: [Discuss-gnuradio] maxtrix inverse

2014-03-20 Thread Moritz Fischer
Well you could implement your Matrix inversion using VOLK, of course. But to my knowledge you'd have to write the necessary kernels yourself. Cheers, Moritz On Thu, Mar 20, 2014 at 12:13 PM, Nasi wrote: > Can we replace Eigen with VOLK in some extent? > > - > NE > > Понедельник, 17 марта 2014

Re: [Discuss-gnuradio] maxtrix inverse

2014-03-20 Thread Nasi
Can we replace Eigen with VOLK in some extent? - NE Понедельник, 17 марта 2014, 11:50 +01:00 от Moritz Fischer : >Hi BZS, > >Eigen is a pretty good library. Other's that might come to might is >using blas/lapack in fortran or armadillo. I wouldn't expect too much >of a speedup when compared to

[Discuss-gnuradio] VOLK - vector multiplication

2014-03-20 Thread Nasi
Hi all, I am using ubuntu 13.04, GNUradio 3.7.  I have a question related to VOLK library.  When I create a vector, lets say: vector y1; Can I multiply this vector to another vector using VOLK? Is there any good documentation for this? -- NE___ Dis

Re: [Discuss-gnuradio] uhd_rx_cfile: getting constant O-overflows using the USRP B200 with debian

2014-03-20 Thread Ingmar Splitt
Hi Aditya, Thanks for your reply. Today I got the chance to measure the lower samplerates and here are the results: I measured the writingspeed on disk and the number of the "O"s for 1 minute runtime. Running X and iotop in the back has nearly no impact. MHz Mb/s"O"-count 32 310

Re: [Discuss-gnuradio] rx_ofdm Does Not Work Past Synchronizer

2014-03-20 Thread Martin Braun
A good way to test is to use the hier blocks for OFDM (you still need to reduce amplitude), they will set up everything in a way that will work for sure. See the loopback example in gr-digital/examples/ofdm. M On 03/19/2014 08:41 PM, Jonathan Fox wrote: > Thanks for the responses. > > When I use