discuss-gnuradio
[Top][All Lists]
Advanced

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

[Discuss-gnuradio] Optional output in sync_block (python).


From: Manu T S
Subject: [Discuss-gnuradio] Optional output in sync_block (python).
Date: Wed, 7 Aug 2013 16:44:35 +0530

Hello Everyone,

I have an LDPC decoder derived from sync_block in python. This is how define the input and output ports.

        gr.sync_block.__init__(self, name="LDPC Decoder",
                in_sig = [(np.float32, self.N)],
                out_sig = [(np.int32, self.K)])

For BER analysis I would like to have another optional output (a vector of length self.N, (np.int32, self.N) ). How can I specify this *optional* output?

--
Manu T S

reply via email to

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