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/lar2rc.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/lar2rc.xml')
-rw-r--r-- | help/en_US/lar2rc.xml | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/help/en_US/lar2rc.xml b/help/en_US/lar2rc.xml index 5f07b8d..4a40678 100644 --- a/help/en_US/lar2rc.xml +++ b/help/en_US/lar2rc.xml @@ -17,7 +17,8 @@ <refnamediv> <refname>lar2rc</refname> - <refpurpose></refpurpose> + <refpurpose> Log Area Ratio to Reflection Coefficient</refpurpose> + <para> </para> </refnamediv> @@ -26,6 +27,7 @@ <synopsis> k = lar2rc(g) </synopsis> + <para> </para> </refsynopsisdiv> <refsection> @@ -36,16 +38,21 @@ <varlistentry><term>k:</term> <listitem><para> returns the reflection coefficients.</para></listitem></varlistentry> </variablelist> + <para> </para> +</refsection> + +<refsection> + <title>Description</title> + <para> This function takes input as a vector of log area ratios and returns vector of reflection coefficients corresponding to log area ratio vector </para> + <para> </para> </refsection> <refsection> <title>Examples</title> + <para> </para> <programlisting role="example"><![CDATA[ -X = [7 6 5 8 3 6 8 7 5 2 4 7 4 3 2 5 4 9 5 3 5 7 3 9 4 1 2 0 5 4 8 6 4 6 5 3]; -k = lar2rc(X) -or t=[2 5 6; 8 6 5; 8 9 4] -k = lar2rc(t) - +g = [0.6389 4.5989 0.0063 0.0163 -0.0163]; //log area ratio inputs +k = lar2rc(g) // returns reflection coefficients corresponding to log area ratios ]]></programlisting> </refsection> @@ -57,4 +64,5 @@ k = lar2rc(t) <member><link linkend="Modified">to match MATLAB o/p when i/p is of type char and is a string by Debdeep Dey</link></member> </simplelist> </refsection> + </refentry> |