diff options
author | Ashwini | 2015-03-10 17:25:45 +0530 |
---|---|---|
committer | Ashwini | 2015-03-10 17:25:45 +0530 |
commit | d00a8dd67dcdc3650f344396425933424813baba (patch) | |
tree | 7840d8a5a5f4681c49971615cc5b83fe0e70cec7 /gr-input/grc/Transfer_function_Numerator.xml | |
parent | 92326794e39e1753f5fcb20715c57ea0f537752e (diff) | |
download | gnuradio-d00a8dd67dcdc3650f344396425933424813baba.tar.gz gnuradio-d00a8dd67dcdc3650f344396425933424813baba.tar.bz2 gnuradio-d00a8dd67dcdc3650f344396425933424813baba.zip |
Plot sink added
Diffstat (limited to 'gr-input/grc/Transfer_function_Numerator.xml')
-rw-r--r-- | gr-input/grc/Transfer_function_Numerator.xml | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/gr-input/grc/Transfer_function_Numerator.xml b/gr-input/grc/Transfer_function_Numerator.xml new file mode 100644 index 000000000..1ad34f316 --- /dev/null +++ b/gr-input/grc/Transfer_function_Numerator.xml @@ -0,0 +1,48 @@ +<?xml version="1.0"?> +<block> + <name>Numerator</name> + <key>Transfer_function_Numerator</key> + <category>Transfer_function</category> + <import>import gnuradio.input.Numerator</import> + <make>gnuradio.input.Numerator.Numerator($num_inputs)</make> + +<param> +<name>Order of Transfer Function</name> +<key>num_inputs</key> +<value>1</value> +<type>int</type> +</param> + + <sink> + <name>in0</name> + <type>float</type> + <nports>1+$num_inputs</nports> + </sink> +<!-- + <sink> + <name>in1</name> + <type>float</type> + <nports>4</nports> + </sink> --> + + + <source> + <name>out</name> + <type>float</type> + </source> + +<doc> + +This will take the coefficient values for the numerator. + +in00 = value of the coefficient of s^0 + +in01 = value of the coefficient of s^1 + +in02 = value of the coefficient of s^2 + +and so on.. + +</doc> + +</block> |