discuss-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Discuss-gnuradio] GRC:Suitable Sink required


From: Josh Blum
Subject: Re: [Discuss-gnuradio] GRC:Suitable Sink required
Date: Mon, 20 Apr 2009 09:43:55 -0700
User-agent: Thunderbird 2.0.0.21 (X11/20090318)

Ahh, no vector sink. The vector sink will queue up samples forever, and although you can clear the buffer, you will not stay vector aligned with the fft size.

Vector sink is good for the QA code with a finite number of samples in and out, but i would definitely not recommend it for dealing with live data.

You can use vector sink.
ex:

dst = gr.vector_sink_f()

then you can see the data in this vector by:

print dst.data()





reply via email to

[Prev in Thread] Current Thread [Next in Thread]