diff options
author | Abhinav Dronamraju | 2017-11-24 19:19:30 +0530 |
---|---|---|
committer | Abhinav Dronamraju | 2017-11-24 19:19:30 +0530 |
commit | 11f08cc395ea1b0de77af3dbb87a985418fc3800 (patch) | |
tree | 0991c8646700449cd366089055f9e6c671253364 /help/en_US/ac2rc.xml | |
parent | e3a1c5e215a7e9a074a3e6fa7171b2092c8c5cc0 (diff) | |
download | FOSSEE-Signal-Processing-Toolbox-11f08cc395ea1b0de77af3dbb87a985418fc3800.tar.gz FOSSEE-Signal-Processing-Toolbox-11f08cc395ea1b0de77af3dbb87a985418fc3800.tar.bz2 FOSSEE-Signal-Processing-Toolbox-11f08cc395ea1b0de77af3dbb87a985418fc3800.zip |
Created xml help files
Diffstat (limited to 'help/en_US/ac2rc.xml')
-rw-r--r-- | help/en_US/ac2rc.xml | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/help/en_US/ac2rc.xml b/help/en_US/ac2rc.xml index 2e8a109..a84b240 100644 --- a/help/en_US/ac2rc.xml +++ b/help/en_US/ac2rc.xml @@ -17,7 +17,7 @@ <refnamediv> <refname>ac2rc</refname> - <refpurpose></refpurpose> + <refpurpose>Convert autocorrelation sequence to reflection coefficients.</refpurpose> </refnamediv> @@ -26,6 +26,33 @@ <synopsis> k = ac2rc(R) [k,R0] = ac2rc(R) + </synopsis> </refsynopsisdiv> + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>R:</term> + <listitem><para> The input autocorrelation sequence. If r is a matrix, each column of r is treated as a separate signal.</para></listitem></varlistentry> + <varlistentry><term>k:</term> + <listitem><para> Returns the reflection coefficients</para></listitem></varlistentry> + <varlistentry><term>R0:</term> + <listitem><para> the zero lag autocorrelation, R0, based on the autocorrelation sequence, R.</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Examples</title> + <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,R0] = ac2rc(X) +or t=[2 5 6; 8 6 5; 8 9 4] +[k,R0] = ac2rc(t) + +Author +Jitendra Singh + + ]]></programlisting> +</refsection> </refentry> |