diff options
author | Sunil Shetye | 2018-07-25 16:27:51 +0530 |
---|---|---|
committer | Sunil Shetye | 2018-07-26 23:50:17 +0530 |
commit | 9ca7882cee16ad48b18df989e8300c697010e55a (patch) | |
tree | 59e0c6116b835ae3e5e3208bc9609ed2828069ed /help/en_US/tf2zp.xml | |
parent | 6bbb00d0f0128381ee95194cf7d008fb6504de7d (diff) | |
download | FOSSEE-Signal-Processing-Toolbox-9ca7882cee16ad48b18df989e8300c697010e55a.tar.gz FOSSEE-Signal-Processing-Toolbox-9ca7882cee16ad48b18df989e8300c697010e55a.tar.bz2 FOSSEE-Signal-Processing-Toolbox-9ca7882cee16ad48b18df989e8300c697010e55a.zip |
code changes by Sonu Sharma during FOSSEE Fellowship 2018
Diffstat (limited to 'help/en_US/tf2zp.xml')
-rw-r--r-- | help/en_US/tf2zp.xml | 51 |
1 files changed, 50 insertions, 1 deletions
diff --git a/help/en_US/tf2zp.xml b/help/en_US/tf2zp.xml index 176e203..d8ae69b 100644 --- a/help/en_US/tf2zp.xml +++ b/help/en_US/tf2zp.xml @@ -17,7 +17,56 @@ <refnamediv> <refname>tf2zp</refname> - <refpurpose>[z,p,k]= tf2zp(b,a);</refpurpose> + <refpurpose>Transfer function to zero pole conversion</refpurpose> </refnamediv> +<refsynopsisdiv> + <title>Calling Sequence</title> + <synopsis> + [z p k] = tf2zp(num, den) + </synopsis> +</refsynopsisdiv> + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>z:</term> + <listitem><para> Zeros</para></listitem></varlistentry> + <varlistentry><term>p:</term> + <listitem><para> Poles</para></listitem></varlistentry> + <varlistentry><term>k:</term> + <listitem><para> Leading coefficient (Gain)</para></listitem></varlistentry> + <varlistentry><term>Num:</term> + <listitem><para> Numerator coefficients of the transfer function</para></listitem></varlistentry> + <varlistentry><term>den:</term> + <listitem><para> Denomenator coefficients of the transfer function</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +It converts transfer function representation to zeros / poles representation. +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +b = [1 2 3] +a = [4 5 6] +[z, p, k] = zp2tf(b, a) + + ]]></programlisting> +</refsection> + + <refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Debdeep Dey (FOSSEE, IIT Bombay)</member> + <member>MODIFIED BY: Sonu Sharma (fellow at FOSSEE, IIT Bombay)</member> + </simplelist> + </refsection> + + </refentry> |