On Wed, Jan 04, 2006 at 08:56:18PM -0500, Marcus Leech wrote: > I'm slowly starting to "grok" some of the internals of GnuRadio. > > I want to use GnuRadio for radio astronomy, including total-power > detection. > > Also, since I'd be wanting to do spectral analysis in parallel, is > there a "Tee fitting" in the signal processing chain that would > allow me to do this?
Yes, you can connect a block's output to multiple inputs. No problem, just use: fg.connect(out, in1) fg.connect(out, in2) Eric _______________________________________________ Discuss-gnuradio mailing list [email protected] http://lists.gnu.org/mailman/listinfo/discuss-gnuradio
