discuss-gnuradio
[Top][All Lists]
Advanced

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

Re: [Discuss-gnuradio] connect multiple streams


From: Vincenzo Pellegrini
Subject: Re: [Discuss-gnuradio] connect multiple streams
Date: Tue, 03 Apr 2007 01:37:07 +0200

thanks josh, thanks eric, it works fine and easy.

is this guess about the behaviour of gr.streams_to_stream correct?

N streams of 1 item each get interleaved into a single stream of N items
according to this pattern:

(item from stream0) (item from stream2) ..... (item from streamN)  

On Mon, 2007-04-02 at 14:25 -0700, Eric Blossom wrote:
> On Mon, Apr 02, 2007 at 06:47:30PM +0200, Vincenzo Pellegrini wrote:
> > hi list,
> > 
> > could anyone send me a link for me to see the right syntax that should
> > be used in python to connect a block with N output streams to one with N
> > input streams?
> > 
> > is it just a connect(a,b) ?
> > 
> > thanks 
> > 
> > vincenzo
> 
> 
>   for i in range(N):
>     fg.connect((a, i), (b, i))
> 
> Eric





reply via email to

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