diff options
author | Brijeshcr | 2017-11-30 18:27:20 +0530 |
---|---|---|
committer | Brijeshcr | 2017-11-30 18:27:20 +0530 |
commit | c257cd7a7e766fb89332cca4fb367904767362ed (patch) | |
tree | 8f455c21cddfd7856cb53c9436319b2c68e4ab50 /help/en_US/ac2rc.xml | |
parent | cc5c7ee42c6cb2ab94dd0e0f6985778657ab47f5 (diff) | |
download | FOSSEE-Signal-Processing-Toolbox-c257cd7a7e766fb89332cca4fb367904767362ed.tar.gz FOSSEE-Signal-Processing-Toolbox-c257cd7a7e766fb89332cca4fb367904767362ed.tar.bz2 FOSSEE-Signal-Processing-Toolbox-c257cd7a7e766fb89332cca4fb367904767362ed.zip |
Help files and functions
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> |