diff options
author | shamikam | 2017-11-07 15:59:48 +0530 |
---|---|---|
committer | shamikam | 2017-11-07 15:59:48 +0530 |
commit | c0c0582462720ed597b00e116506570577614e89 (patch) | |
tree | 31dedd23698e5357b19c810b7d7a8464100ef44a /help/en_US/poly2ac.xml | |
download | FOSSEE-Signal-Processing-Toolbox-c0c0582462720ed597b00e116506570577614e89.tar.gz FOSSEE-Signal-Processing-Toolbox-c0c0582462720ed597b00e116506570577614e89.tar.bz2 FOSSEE-Signal-Processing-Toolbox-c0c0582462720ed597b00e116506570577614e89.zip |
initial commit
Diffstat (limited to 'help/en_US/poly2ac.xml')
-rw-r--r-- | help/en_US/poly2ac.xml | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/help/en_US/poly2ac.xml b/help/en_US/poly2ac.xml new file mode 100644 index 0000000..f7ac3e0 --- /dev/null +++ b/help/en_US/poly2ac.xml @@ -0,0 +1,80 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from poly2ac.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="poly2ac" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>poly2ac</refname> + <refpurpose>Convert prediction polynomial to autocorrelation sequence.</refpurpose> + </refnamediv> + + +<refsynopsisdiv> + <title>Calling Sequence</title> + <synopsis> + R = poly2ac(a,efinal) + + </synopsis> +</refsynopsisdiv> + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>a:</term> + <listitem><para> input prediction polynomial with 1st element 1 (if not, poly2ac normalizes it to 1 before proceeding).</para></listitem></varlistentry> + <varlistentry><term>efinal:</term> + <listitem><para> input prediction error</para></listitem></varlistentry> + <varlistentry><term>r:</term> + <listitem><para> output autocorrelation sequence</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +This function obtains the underlying autocorrelation sequence that would best fit a linear prediction filter described by the +denominator polynomial and the numerator scaling. The filter is H(z) = efinal/(a(1) + a(2) x z a(3) x z^2 ... a(n) x z^n-1) + </para> + <para> +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +a = [1.0000 0.4288 0.76 0.0404 -0.02]; +efinal = 0.2; // Step prediction error +r = poly2ac(a,efinal) // Autocorrelation sequence + + ]]></programlisting> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="ac2poly">ac2poly</link></member> + <member><link linkend="poly2rc">poly2rc</link></member> + <member><link linkend="rc2poly">rc2poly</link></member> + <member><link linkend="rc2ac">rc2ac</link></member> + <member><link linkend="ac2rc">ac2rc</link></member> + <member><link linkend="Author:">Parthe Pandit</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Bibliography</title> + <para>S. Kay, Modern Spectral Estimation, Prentice Hall, N.J., 1987, Chapter 6.</para> +</refsection> +</refentry> |