Re: [Discuss-gnuradio] Modifying vectors

2006-03-20 Thread Patrick Strasser
Eric Blossom wrote: On Fri, Mar 17, 2006 at 10:27:45AM +0100, Patrick Strasser wrote: Hello! fft = gr.fft_vfc(fft_size, True, window.hanning(fft_size)) ifft = gr.fft_vcc(fft_size, False, window.hanning(fft_size)) self.connect(s2p, fft ) self.connect(fft, ifft

Re: [Discuss-gnuradio] Modifying vectors

2006-03-17 Thread Eric Blossom
On Fri, Mar 17, 2006 at 10:27:45AM +0100, Patrick Strasser wrote: > Hello! > > I've following working code: > > src = audio.source (sample_rate, options.audio_input) > dst = audio.sink (sample_rate, options.audio_output) > > fft_size = 1024 > > s2p = gr.serial_to

[Discuss-gnuradio] Modifying vectors

2006-03-17 Thread Patrick Strasser
Hello! I've following working code: src = audio.source (sample_rate, options.audio_input) dst = audio.sink (sample_rate, options.audio_output) fft_size = 1024 s2p = gr.serial_to_parallel(gr.sizeof_float, fft_size) fft = gr.fft_vfc(fft_size, True, window