summaryrefslogtreecommitdiff
path: root/help/en_US/ac2poly.xml
diff options
context:
space:
mode:
authorshamikam2017-11-07 15:59:48 +0530
committershamikam2017-11-07 15:59:48 +0530
commitc0c0582462720ed597b00e116506570577614e89 (patch)
tree31dedd23698e5357b19c810b7d7a8464100ef44a /help/en_US/ac2poly.xml
downloadFOSSEE-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/ac2poly.xml')
-rw-r--r--help/en_US/ac2poly.xml62
1 files changed, 62 insertions, 0 deletions
diff --git a/help/en_US/ac2poly.xml b/help/en_US/ac2poly.xml
new file mode 100644
index 0000000..e90759d
--- /dev/null
+++ b/help/en_US/ac2poly.xml
@@ -0,0 +1,62 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from ac2poly.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="ac2poly" 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>ac2poly</refname>
+ <refpurpose>Convert autocorrelation sequence to polynomial of prediction filter</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ a = ac2poly(r)
+ [a,e] = ac2poly(r)
+
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>r:</term>
+ <listitem><para> Autocorrelation sequence to be represented with an FIR linear prediction filter</para></listitem></varlistentry>
+ <varlistentry><term>a:</term>
+ <listitem><para> Output polynomial representing the linear prediction filter e/(a(1) + a(2)z + a(3)z^2 .. a(N)z^N-1)</para></listitem></varlistentry>
+ <varlistentry><term>e:</term>
+ <listitem><para> Output scaling for the lienar prediction filter</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+Function ac2poly() finds the best fit polynomial for FIR linear prediction filter a, corresponding to the autocorrelation sequence r. a is the same length as r, and is normalized with the first element. So a(1) = 1.
+ </para>
+ <para>
+Author
+Parthe Pandit
+ </para>
+ <para>
+</para>
+</refsection>
+
+<refsection>
+ <title>Bibliography</title>
+ <para>Kay, Steven M. Modern Spectral Estimation. Englewood Cliffs, NJ: Prentice-Hall, 1988.</para>
+</refsection>
+</refentry>