discuss-gnuradio
[Top][All Lists]
Advanced

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

[Discuss-gnuradio] How to specify vector input signature for gr_sync_blo


From: Manu T S
Subject: [Discuss-gnuradio] How to specify vector input signature for gr_sync_block.
Date: Sat, 22 Jun 2013 18:16:57 +0530

I am trying to write code for a block which accepts a vector input and spits out a vector output. The block is derived from gr_sync_block.
From the tutorial on OOT I have the following information. For a block with single input and single output the __init__ method is as given below.

def __init__(self):
    gr.sync_block.__init__(self,
             name = "square3_ff",
             in_sig = [numpy.float32],
             out_sig = [numpy.float32])

How do I take in a vector input?
--
Manu T S

reply via email to

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