summaryrefslogtreecommitdiff
path: root/help/en_US
diff options
context:
space:
mode:
Diffstat (limited to 'help/en_US')
-rw-r--r--help/en_US/ac2rc.xml29
-rw-r--r--help/en_US/arburg.xml4
-rw-r--r--help/en_US/arcov.xml24
-rw-r--r--help/en_US/aryule.xml2
-rw-r--r--help/en_US/besselap.xml71
-rw-r--r--help/en_US/buttap.xml67
-rw-r--r--help/en_US/cceps.xml23
-rw-r--r--help/en_US/cheb.xml65
-rw-r--r--help/en_US/cheb1ap.xml75
-rw-r--r--help/en_US/cheb2ap.xml63
-rw-r--r--help/en_US/cplxreal.xml56
-rw-r--r--help/en_US/czt.xml65
-rw-r--r--help/en_US/dst1.xml47
-rw-r--r--help/en_US/ellipap.xml68
-rw-r--r--help/en_US/fft.xml74
-rw-r--r--help/en_US/fft2.xml68
-rw-r--r--help/en_US/fht.xml23
-rw-r--r--help/en_US/freqs.xml61
-rw-r--r--help/en_US/fwht.xml69
-rw-r--r--help/en_US/hanning.xml23
-rw-r--r--help/en_US/hilbert1.xml70
-rw-r--r--help/en_US/hurst.xml47
-rw-r--r--help/en_US/idct1.xml23
-rw-r--r--help/en_US/idct2.xml23
-rw-r--r--help/en_US/idst1.xml23
-rw-r--r--help/en_US/ifft.xml81
-rw-r--r--help/en_US/ifft2.xml68
-rw-r--r--help/en_US/ifht.xml65
-rw-r--r--help/en_US/ifwht.xml23
-rw-r--r--help/en_US/invfreq.xml69
-rw-r--r--help/en_US/master_help.xml860
-rw-r--r--help/en_US/ncauer.xml71
-rw-r--r--help/en_US/pei_tseng_notch.xml66
-rw-r--r--help/en_US/rceps.xml50
-rw-r--r--help/en_US/remez1.xml58
-rw-r--r--help/en_US/scilab_en_US_help/JavaHelpSearch/DOCSbin19232 -> 12852 bytes
-rw-r--r--help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS.TABbin3094 -> 1714 bytes
-rw-r--r--help/en_US/scilab_en_US_help/JavaHelpSearch/OFFSETSbin1215 -> 828 bytes
-rw-r--r--help/en_US/scilab_en_US_help/JavaHelpSearch/POSITIONSbin80007 -> 54786 bytes
-rw-r--r--help/en_US/scilab_en_US_help/JavaHelpSearch/SCHEMA2
-rw-r--r--help/en_US/scilab_en_US_help/JavaHelpSearch/TMAPbin26736 -> 26624 bytes
-rw-r--r--help/en_US/scilab_en_US_help/jhelpmap.jhm45
-rw-r--r--help/en_US/scilab_en_US_help/jhelptoc.xml45
-rw-r--r--help/en_US/sigmoid_train.xml23
-rw-r--r--help/en_US/sinetone.xml54
-rw-r--r--help/en_US/sinewave.xml53
-rw-r--r--help/en_US/spectral_adf.xml54
-rw-r--r--help/en_US/spectral_xdf.xml54
-rw-r--r--help/en_US/spencer.xml45
-rw-r--r--help/en_US/stft.xml84
-rw-r--r--help/en_US/synthesis.xml49
-rw-r--r--help/en_US/wconv.xml64
-rw-r--r--help/en_US/xcov1.xml23
-rw-r--r--help/en_US/yulewalker.xml47
-rw-r--r--help/en_US/zp2ss.xml90
-rw-r--r--help/en_US/zp2tf.xml72
56 files changed, 2986 insertions, 392 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>
diff --git a/help/en_US/arburg.xml b/help/en_US/arburg.xml
index 75648ba..6aa017e 100644
--- a/help/en_US/arburg.xml
+++ b/help/en_US/arburg.xml
@@ -49,7 +49,11 @@
<title>Description</title>
<para>
This is an Octave function.
+ </para>
+ <para>
This function calculates coefficients of an autoregressive (AR) model of complex data x using the whitening lattice-filter method of Burg.
+ </para>
+ <para>
The first argument is the data sampled. The second argument is the number of poles in the model (or limit in case a criterion is supplied).
The third parameter takes in the criterion to limit the number of poles. The acceptable values are "AIC", "AKICc", "KIC", "AICc" which are based on information theory.
Output variable a is a list of P+1 autoregression coefficients.
diff --git a/help/en_US/arcov.xml b/help/en_US/arcov.xml
index 64a5364..11f1d94 100644
--- a/help/en_US/arcov.xml
+++ b/help/en_US/arcov.xml
@@ -17,7 +17,29 @@
<refnamediv>
<refname>arcov</refname>
- <refpurpose></refpurpose>
+ <refpurpose>Autoregressive all-pole model parameters — covariance method</refpurpose>
</refnamediv>
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ a = arcov(x,p)
+ [a,e] = arcov(x,p)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>a:</term>
+ <listitem><para> contains normalized estimates of the AR system parameters, A(z), in descending powers of z.</para></listitem></varlistentry>
+ <varlistentry><term>e:</term>
+ <listitem><para> variance estimate of the white noise input to the AR model</para></listitem></varlistentry>
+ <varlistentry><term>x:</term>
+ <listitem><para> is the input signal</para></listitem></varlistentry>
+ <varlistentry><term>p:</term>
+ <listitem><para> is the order of the auto regressive model</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
</refentry>
diff --git a/help/en_US/aryule.xml b/help/en_US/aryule.xml
index 9948a0f..7d706fd 100644
--- a/help/en_US/aryule.xml
+++ b/help/en_US/aryule.xml
@@ -46,6 +46,8 @@
<title>Description</title>
<para>
This is an Octave function.
+ </para>
+ <para>
This function fits an AR (p)-model with Yule-Walker estimates.
The first argument is the data vector which is to be estimated.
Output variable a gives the AR coefficients, v gives the variance of the white noise and k gives the reflection coefficients to be used in the lattice filter.
diff --git a/help/en_US/besselap.xml b/help/en_US/besselap.xml
new file mode 100644
index 0000000..f3236d7
--- /dev/null
+++ b/help/en_US/besselap.xml
@@ -0,0 +1,71 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from besselap.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="besselap" 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>besselap</refname>
+ <refpurpose>Return bessel analog filter prototype.</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ [zero, pole, gain] = besselap (n)
+ [zero, pole] = besselap (n)
+ zero = besselap (n)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>n:</term>
+ <listitem><para> Filter Order</para></listitem></varlistentry>
+ <varlistentry><term>zero:</term>
+ <listitem><para> Zeros</para></listitem></varlistentry>
+ <varlistentry><term>pole:</term>
+ <listitem><para> Poles</para></listitem></varlistentry>
+ <varlistentry><term>gain:</term>
+ <listitem><para> Gain</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+This is an Octave function.
+It Return bessel analog filter prototype of nth order.
+</para>
+</refsection>
+
+<refsection>
+ <title>Examples</title>
+ <programlisting role="example"><![CDATA[
+[zero, pole, gain] = besselap (5)
+zero = [](0x0)
+pole =
+
+-0.59058 + 0.90721i
+-0.59058 - 0.90721i
+-0.92644 + 0.00000i
+-0.85155 + 0.44272i
+-0.85155 - 0.44272i
+
+gain = 1
+ ]]></programlisting>
+</refsection>
+</refentry>
diff --git a/help/en_US/buttap.xml b/help/en_US/buttap.xml
new file mode 100644
index 0000000..d891af5
--- /dev/null
+++ b/help/en_US/buttap.xml
@@ -0,0 +1,67 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from buttap.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="buttap" 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>buttap</refname>
+ <refpurpose>Design a lowpass analog Butterworth filter.</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ z = buttap (n)
+ [z, p] = buttap (n)
+ [z, p, g] = buttap (n)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>n:</term>
+ <listitem><para> Filter Order</para></listitem></varlistentry>
+ <varlistentry><term>z:</term>
+ <listitem><para> Zeros</para></listitem></varlistentry>
+ <varlistentry><term>p:</term>
+ <listitem><para> Poles</para></listitem></varlistentry>
+ <varlistentry><term>g:</term>
+ <listitem><para> Gain</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+This is an Octave function.
+It designs a lowpass analog Butterworth filter of nth order.
+</para>
+</refsection>
+
+<refsection>
+ <title>Examples</title>
+ <programlisting role="example"><![CDATA[
+[z, p, g] = buttap (5)
+z = [](0x0)
+p =
+
+-0.30902 + 0.95106i -0.80902 + 0.58779i -1.00000 + 0.00000i -0.80902 - 0.58779i -0.30902 - 0.95106i
+
+g = 1
+ ]]></programlisting>
+</refsection>
+</refentry>
diff --git a/help/en_US/cceps.xml b/help/en_US/cceps.xml
new file mode 100644
index 0000000..8f270f6
--- /dev/null
+++ b/help/en_US/cceps.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from cceps.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="cceps" 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>cceps</refname>
+ <refpurpose></refpurpose>
+ </refnamediv>
+
+</refentry>
diff --git a/help/en_US/cheb.xml b/help/en_US/cheb.xml
new file mode 100644
index 0000000..7e39e30
--- /dev/null
+++ b/help/en_US/cheb.xml
@@ -0,0 +1,65 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from cheb.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="cheb" 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>cheb</refname>
+ <refpurpose>Calculates the nth-order Chebyshev polynomial at the point x.</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ cheb(n, x)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>n:</term>
+ <listitem><para> Filter order</para></listitem></varlistentry>
+ <varlistentry><term>x:</term>
+ <listitem><para> Point at which the Chebyshev polynomial is calculater.</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+This is an Octave function.
+Equation for Chebyshev polynomial is
+/ cos(n acos(x), |x| &lt;= 1
+Tn(x) = |
+\ cosh(n acosh(x), |x| &gt; 1
+ </para>
+ <para>
+x can also be a vector. In that case the output will also be a vector of same size as x.
+</para>
+</refsection>
+
+<refsection>
+ <title>Examples</title>
+ <programlisting role="example"><![CDATA[
+x = [1 2 3 4]
+cheb(10, x)
+ans =
+
+1.0000e+00 2.6209e+05 2.2620e+07 4.5747e+08
+ ]]></programlisting>
+</refsection>
+</refentry>
diff --git a/help/en_US/cheb1ap.xml b/help/en_US/cheb1ap.xml
new file mode 100644
index 0000000..dbd541a
--- /dev/null
+++ b/help/en_US/cheb1ap.xml
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from cheb1ap.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="cheb1ap" 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>cheb1ap</refname>
+ <refpurpose>This function designs a lowpass analog Chebyshev type I filter.</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ [z, p, g] = cheb1ap (n, Rp)
+ [z, p] = cheb1ap (n, Rp)
+ p = cheb1ap (n, Rp)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>n:</term>
+ <listitem><para> Filter Order</para></listitem></varlistentry>
+ <varlistentry><term>Rp:</term>
+ <listitem><para> Peak-to-peak passband ripple</para></listitem></varlistentry>
+ <varlistentry><term>z:</term>
+ <listitem><para> Zeros</para></listitem></varlistentry>
+ <varlistentry><term>p:</term>
+ <listitem><para> Poles</para></listitem></varlistentry>
+ <varlistentry><term>g:</term>
+ <listitem><para> Gain</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+This is an Octave function.
+It designs a lowpass analog Chebyshev type I filter of nth order and with a Peak-to-peak passband ripple of Rp.
+</para>
+</refsection>
+
+<refsection>
+ <title>Examples</title>
+ <programlisting role="example"><![CDATA[
+[z, p, g] = cheb1ap (10, 20)
+z = [](0x0)
+p =
+
+Columns 1 through 6:
+
+-0.00157 - 0.98774i -0.00456 - 0.89105i -0.00709 - 0.70714i -0.00894 - 0.45401i -0.00991 - 0.15644i -0.00991 + 0.15644i
+
+Columns 7 through 10:
+
+-0.00894 + 0.45401i -0.00709 + 0.70714i -0.00456 + 0.89105i -0.00157 + 0.98774i
+
+g = 1.9630e-04 - 6.3527e-22i
+ ]]></programlisting>
+</refsection>
+</refentry>
diff --git a/help/en_US/cheb2ap.xml b/help/en_US/cheb2ap.xml
new file mode 100644
index 0000000..0fcdd8f
--- /dev/null
+++ b/help/en_US/cheb2ap.xml
@@ -0,0 +1,63 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from cheb2ap.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="cheb2ap" 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>cheb2ap</refname>
+ <refpurpose>This function designs a lowpass analog Chebyshev type II filter.</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ [z, p, g] = cheb2ap (n, Rs)
+ [z, p] = cheb2ap (n, Rs)
+ p = cheb2ap (n, Rs)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>n:</term>
+ <listitem><para> Filter Order</para></listitem></varlistentry>
+ <varlistentry><term>Rs:</term>
+ <listitem><para> Stopband attenuation</para></listitem></varlistentry>
+ <varlistentry><term>z:</term>
+ <listitem><para> Zeros</para></listitem></varlistentry>
+ <varlistentry><term>p:</term>
+ <listitem><para> Poles</para></listitem></varlistentry>
+ <varlistentry><term>g:</term>
+ <listitem><para> Gain</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+This is an Octave function.
+This function designs a lowpass analog Chebyshev type II filter of nth order and with a stopband attenuation of Rs.
+</para>
+</refsection>
+
+<refsection>
+ <title>Examples</title>
+ <programlisting role="example"><![CDATA[
+
+ ]]></programlisting>
+</refsection>
+</refentry>
diff --git a/help/en_US/cplxreal.xml b/help/en_US/cplxreal.xml
new file mode 100644
index 0000000..f5e5ed5
--- /dev/null
+++ b/help/en_US/cplxreal.xml
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from cplxreal.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="cplxreal" 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>cplxreal</refname>
+ <refpurpose>Function to divide vector z into complex and real elements, removing the one of each complex conjugate pair.</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ [zc, zr] = cplxreal (z, thresh)
+ [zc, zr] = cplxreal (z)
+ zc = cplxreal (z, thresh)
+ zc = cplxreal (z)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>z:</term>
+ <listitem><para> vector of complex numbers.</para></listitem></varlistentry>
+ <varlistentry><term>thresh:</term>
+ <listitem><para> tolerance for comparisons.</para></listitem></varlistentry>
+ <varlistentry><term>zc:</term>
+ <listitem><para> vector containing the elements of z that have positive imaginary parts.</para></listitem></varlistentry>
+ <varlistentry><term>zr:</term>
+ <listitem><para> vector containing the elements of z that are real.</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+This is an Octave function.
+Every complex element of z is expected to have a complex-conjugate elsewhere in z. From the pair of complex-conjugates, the one with the negative imaginary part is removed.
+If the magnitude of the imaginary part of an element is less than the thresh, it is declared as real.
+</para>
+</refsection>
+</refentry>
diff --git a/help/en_US/czt.xml b/help/en_US/czt.xml
new file mode 100644
index 0000000..1296d19
--- /dev/null
+++ b/help/en_US/czt.xml
@@ -0,0 +1,65 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from czt.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="czt" 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>czt</refname>
+ <refpurpose>Chirp Z Transform</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ czt (x)
+ czt (x, m)
+ czt (x, m, w)
+ czt (x, m, w, a)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>x:</term>
+ <listitem><para> Input scalar or vector</para></listitem></varlistentry>
+ <varlistentry><term>m:</term>
+ <listitem><para> Total Number of steps</para></listitem></varlistentry>
+ <varlistentry><term>w:</term>
+ <listitem><para> ratio between points in each step</para></listitem></varlistentry>
+ <varlistentry><term>a:</term>
+ <listitem><para> point in the complex plane</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+This is an Octave function.
+Chirp z-transform. Compute the frequency response starting at a and stepping by w for m steps. a is a point in the complex plane, and w is the ratio between points in each step (i.e., radius increases exponentially, and angle increases linearly).
+</para>
+</refsection>
+
+<refsection>
+ <title>Examples</title>
+ <programlisting role="example"><![CDATA[
+m = 32; ## number of points desired
+w = exp(-j*2*pi*(f2-f1)/((m-1)*Fs)); ## freq. step of f2-f1/m
+a = exp(j*2*pi*f1/Fs); ## starting at frequency f1
+y = czt(x, m, w, a);
+ ]]></programlisting>
+</refsection>
+</refentry>
diff --git a/help/en_US/dst1.xml b/help/en_US/dst1.xml
new file mode 100644
index 0000000..62fa699
--- /dev/null
+++ b/help/en_US/dst1.xml
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from dst1.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="dst1" 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>dst1</refname>
+ <refpurpose>Computes the type I discrete sine transform of x</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ y= dst1(x)
+ y= dst1(x,n)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>x:</term>
+ <listitem><para> real or complex valued vector</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+This is an Octave function.
+Computes the type I discrete sine transform of x. If n is given, then x is padded or trimmed to length n before computing the transform. If x is a matrix, compute the transform along the columns of the the matrix.
+</para>
+</refsection>
+</refentry>
diff --git a/help/en_US/ellipap.xml b/help/en_US/ellipap.xml
new file mode 100644
index 0000000..597a4c1
--- /dev/null
+++ b/help/en_US/ellipap.xml
@@ -0,0 +1,68 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from ellipap.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="ellipap" 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>ellipap</refname>
+ <refpurpose>Designs a lowpass analog elliptic filter.</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ [z, p, g] = ellipap (n, Rp, Rs)
+ [z, p] = ellipap (n, Rp, Rs)
+ z = ellipap (n, Rp, Rs)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>n:</term>
+ <listitem><para> Filter Order</para></listitem></varlistentry>
+ <varlistentry><term>Rp:</term>
+ <listitem><para> Peak-to-peak passband ripple</para></listitem></varlistentry>
+ <varlistentry><term>Rs:</term>
+ <listitem><para> Stopband attenuation</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+This is an Octave function.
+It designs a lowpass analog elliptic filter of nth order, with a Peak-to-peak passband ripple of Rp and a stopband attenuation of Rs.
+</para>
+</refsection>
+
+<refsection>
+ <title>Examples</title>
+ <programlisting role="example"><![CDATA[
+[z, p, g] = ellipap (5, 10, 10)
+z =
+
+0.0000 + 2.5546i 0.0000 + 1.6835i -0.0000 - 2.5546i -0.0000 - 1.6835i
+
+p =
+
+-0.05243 + 0.63524i -0.01633 + 0.96289i -0.05243 - 0.63524i -0.01633 - 0.96289i -0.07369 + 0.00000i
+
+g = 0.0015012
+ ]]></programlisting>
+</refsection>
+</refentry>
diff --git a/help/en_US/fft.xml b/help/en_US/fft.xml
new file mode 100644
index 0000000..12922ed
--- /dev/null
+++ b/help/en_US/fft.xml
@@ -0,0 +1,74 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from fft.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="fft" 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>fft</refname>
+ <refpurpose>Calculates the discrete Fourier transform of a matrix using Fast Fourier Transform algorithm.</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ fft (x, n, dim)
+ fft (x, n)
+ fft (x)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>x:</term>
+ <listitem><para> input matrix</para></listitem></varlistentry>
+ <varlistentry><term>n:</term>
+ <listitem><para> Specifies the number of elements of x to be used</para></listitem></varlistentry>
+ <varlistentry><term>dim:</term>
+ <listitem><para> Specifies the dimention of the matrix along which the FFT is performed</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+This is an Octave function.
+The FFT is calculated along the first non-singleton dimension of the array. Thus, FFT is computed for each column of x.
+ </para>
+ <para>
+n is an integer specifying the number of elements of x to use. If n is larger than dimention along. which the FFT is calculated, then x is resized and padded with zeros.
+Similarly, if n is smaller, then x is truncated.
+ </para>
+ <para>
+dim is an integer specifying the dimension of the matrix along which the FFT is performed.
+</para>
+</refsection>
+
+<refsection>
+ <title>Examples</title>
+ <programlisting role="example"><![CDATA[
+x = [1 2 3; 4 5 6; 7 8 9]
+n = 3
+dim = 2
+fft (x, n, dim)
+ans =
+
+6.0000 + 0.0000i -1.5000 + 0.8660i -1.5000 - 0.8660i
+15.0000 + 0.0000i -1.5000 + 0.8660i -1.5000 - 0.8660i
+24.0000 + 0.0000i -1.5000 + 0.8660i -1.5000 - 0.8660i
+ ]]></programlisting>
+</refsection>
+</refentry>
diff --git a/help/en_US/fft2.xml b/help/en_US/fft2.xml
new file mode 100644
index 0000000..d35fc4a
--- /dev/null
+++ b/help/en_US/fft2.xml
@@ -0,0 +1,68 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from fft2.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="fft2" 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>fft2</refname>
+ <refpurpose>Calculates the two-dimensional discrete Fourier transform of A using a Fast Fourier Transform algorithm.</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ fft2 (A, m, n)
+ fft2 (A)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>A:</term>
+ <listitem><para> input matrix</para></listitem></varlistentry>
+ <varlistentry><term>m:</term>
+ <listitem><para> number of rows of A to be used</para></listitem></varlistentry>
+ <varlistentry><term>n:</term>
+ <listitem><para> number of columns of A to be used</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+This is an Octave function.
+It performs two-dimentional FFT on the matrix A. m and n may be used specify the number of rows and columns of A to use. If either of these is larger than the size of A, A is resized and padded with zeros.
+If A is a multi-dimensional matrix, each two-dimensional sub-matrix of A is treated separately.
+</para>
+</refsection>
+
+<refsection>
+ <title>Examples</title>
+ <programlisting role="example"><![CDATA[
+x = [1 2 3; 4 5 6; 7 8 9]
+m = 4
+n = 4
+fft2 (A, m, n)
+ans =
+
+45 + 0i -6 - 15i 15 + 0i -6 + 15i
+-18 - 15i -5 + 8i -6 - 5i 5 - 4i
+15 + 0i -2 - 5i 5 + 0i -2 + 5i
+-18 + 15i 5 + 4i -6 + 5i -5 - 8i
+ ]]></programlisting>
+</refsection>
+</refentry>
diff --git a/help/en_US/fht.xml b/help/en_US/fht.xml
new file mode 100644
index 0000000..06311a3
--- /dev/null
+++ b/help/en_US/fht.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from fht.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="fht" 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>fht</refname>
+ <refpurpose>funcprot(0);</refpurpose>
+ </refnamediv>
+
+</refentry>
diff --git a/help/en_US/freqs.xml b/help/en_US/freqs.xml
new file mode 100644
index 0000000..258f280
--- /dev/null
+++ b/help/en_US/freqs.xml
@@ -0,0 +1,61 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from freqs.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="freqs" 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>freqs</refname>
+ <refpurpose>Compute the s-plane frequency response of the IIR filter.</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ h = freqs (b, a, w)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>b:</term>
+ <listitem><para> vector containing the coefficients of the numerator of the filter.</para></listitem></varlistentry>
+ <varlistentry><term>a:</term>
+ <listitem><para> vector containing the coefficients of the denominator of the filter.</para></listitem></varlistentry>
+ <varlistentry><term>w:</term>
+ <listitem><para> vector containing frequencies</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+This is an Octave function.
+It computes the s-plane frequency response of the IIR filter B(s)/A(s) as H = polyval(B,j*W)./polyval(A,j*W).
+If called with no output argument, a plot of magnitude and phase are displayed.
+</para>
+</refsection>
+
+<refsection>
+ <title>Examples</title>
+ <programlisting role="example"><![CDATA[
+B = [1 2];
+A = [1 1];
+w = linspace(0,4,128);
+freqs(B,A,w);
+ ]]></programlisting>
+</refsection>
+</refentry>
diff --git a/help/en_US/fwht.xml b/help/en_US/fwht.xml
new file mode 100644
index 0000000..4140453
--- /dev/null
+++ b/help/en_US/fwht.xml
@@ -0,0 +1,69 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from fwht.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="fwht" 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>fwht</refname>
+ <refpurpose>Compute the Walsh-Hadamard transform of x using the Fast Walsh-Hadamard Transform (FWHT) algorithm</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ fwht (x)
+ fwht (x, n)
+ fwht (x, n, order)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>x:</term>
+ <listitem><para> real or complex valued scalar or vector</para></listitem></varlistentry>
+ <varlistentry><term>n:</term>
+ <listitem><para> x is truncated or extended to have length n</para></listitem></varlistentry>
+ <varlistentry><term>order:</term>
+ <listitem><para> Specification of order in which coefficients should be arranged</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+Compute the Walsh-Hadamard transform of x using the Fast Walsh-Hadamard Transform (FWHT) algorithm. If the input is a matrix, the FWHT is calculated along the columns of x.
+ </para>
+ <para>
+The number of elements of x must be a power of 2; if not, the input will be extended and filled with zeros. If a second argument is given, the input is truncated or extended to have length n.
+ </para>
+ <para>
+The third argument specifies the order in which the returned Walsh-Hadamard transform coefficients should be arranged. The order may be any of the following strings:
+ </para>
+ <para>
+"sequency"
+The coefficients are returned in sequency order. This is the default if order is not given.
+ </para>
+ <para>
+"hadamard"
+The coefficients are returned in Hadamard order.
+ </para>
+ <para>
+"dyadic"
+The coefficients are returned in Gray code order.
+</para>
+</refsection>
+</refentry>
diff --git a/help/en_US/hanning.xml b/help/en_US/hanning.xml
new file mode 100644
index 0000000..dc1e475
--- /dev/null
+++ b/help/en_US/hanning.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from hanning.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="hanning" 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>hanning</refname>
+ <refpurpose></refpurpose>
+ </refnamediv>
+
+</refentry>
diff --git a/help/en_US/hilbert1.xml b/help/en_US/hilbert1.xml
new file mode 100644
index 0000000..3d4ab42
--- /dev/null
+++ b/help/en_US/hilbert1.xml
@@ -0,0 +1,70 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from hilbert1.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="hilbert1" 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>hilbert1</refname>
+ <refpurpose>Analytic extension of real valued signal.</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ h= hilbert1(f)
+ h= hilbert1(f,N)
+ h= hilbert1(f,N,dim)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>f:</term>
+ <listitem><para> real or complex valued scalar or vector</para></listitem></varlistentry>
+ <varlistentry><term>N:</term>
+ <listitem><para> The result will have length N</para></listitem></varlistentry>
+ <varlistentry><term>dim :</term>
+ <listitem><para> It analyses the input in this dimension</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+h = hilbert (f) computes the extension of the real valued signal f to an analytic signal. If f is a matrix, the transformation is applied to each column. For N-D arrays, the transformation is applied to the first non-singleton dimension.
+ </para>
+ <para>
+real (h) contains the original signal f. imag (h) contains the Hilbert transform of f.
+ </para>
+ <para>
+hilbert1 (f, N) does the same using a length N Hilbert transform. The result will also have length N.
+ </para>
+ <para>
+hilbert1 (f, [], dim) or hilbert1 (f, N, dim) does the same along dimension dim.
+</para>
+</refsection>
+
+<refsection>
+ <title>Examples</title>
+ <programlisting role="example"><![CDATA[
+## notice that the imaginary signal is phase-shifted 90 degrees
+t=linspace(0,10,256);
+z = hilbert1(sin(2*pi*0.5*t));
+grid on; plot(t,real(z),';real;',t,imag(z),';imag;');
+ ]]></programlisting>
+</refsection>
+</refentry>
diff --git a/help/en_US/hurst.xml b/help/en_US/hurst.xml
new file mode 100644
index 0000000..c6c5f3e
--- /dev/null
+++ b/help/en_US/hurst.xml
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from hurst.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="hurst" 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>hurst</refname>
+ <refpurpose>Estimate the Hurst parameter of sample X via the rescaled r statistic.</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ hurst(X)
+ variable=hurst(X)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>X:</term>
+ <listitem><para> X is a matrix, the parameter of sample X via the rescaled r statistic</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+This is an Octave function.
+This function estimates the Hurst parameter of sample X via the rescaled rstatistic.
+</para>
+</refsection>
+</refentry>
diff --git a/help/en_US/idct1.xml b/help/en_US/idct1.xml
new file mode 100644
index 0000000..c43eb1c
--- /dev/null
+++ b/help/en_US/idct1.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from idct1.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="idct1" 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>idct1</refname>
+ <refpurpose>funcprot(0);</refpurpose>
+ </refnamediv>
+
+</refentry>
diff --git a/help/en_US/idct2.xml b/help/en_US/idct2.xml
new file mode 100644
index 0000000..0e7fcdc
--- /dev/null
+++ b/help/en_US/idct2.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from idct2.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="idct2" 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>idct2</refname>
+ <refpurpose>funcprot(0);</refpurpose>
+ </refnamediv>
+
+</refentry>
diff --git a/help/en_US/idst1.xml b/help/en_US/idst1.xml
new file mode 100644
index 0000000..74a9f0e
--- /dev/null
+++ b/help/en_US/idst1.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from idst1.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="idst1" 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>idst1</refname>
+ <refpurpose>funcprot(0);</refpurpose>
+ </refnamediv>
+
+</refentry>
diff --git a/help/en_US/ifft.xml b/help/en_US/ifft.xml
new file mode 100644
index 0000000..5e09726
--- /dev/null
+++ b/help/en_US/ifft.xml
@@ -0,0 +1,81 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from ifft.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="ifft" 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>ifft</refname>
+ <refpurpose>Calculates the inverse discrete Fourier transform of a matrix using Fast Fourier Transform algorithm.</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ ifft (x, n, dim)
+ ifft (x, n)
+ ifft (x)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>x:</term>
+ <listitem><para> input matrix</para></listitem></varlistentry>
+ <varlistentry><term>n:</term>
+ <listitem><para> Specifies the number of elements of x to be used</para></listitem></varlistentry>
+ <varlistentry><term>dim:</term>
+ <listitem><para> Specifies the dimention of the matrix along which the inverse FFT is performed</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+This is an Octave function.
+</para>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+This is an Octave function.
+The inverse FFT is calculated along the first non-singleton dimension of the array. Thus, inverse FFT is computed for each column of x.
+ </para>
+ <para>
+n is an integer specifying the number of elements of x to use. If n is larger than dimention along. which the inverse FFT is calculated, then x is resized and padded with zeros.
+Similarly, if n is smaller, then x is truncated.
+ </para>
+ <para>
+dim is an integer specifying the dimension of the matrix along which the inverse FFT is performed.
+</para>
+</refsection>
+
+<refsection>
+ <title>Examples</title>
+ <programlisting role="example"><![CDATA[
+x = [1 2 3; 4 5 6; 7 8 9]
+n = 3
+dim = 2
+ifft (x, n, dim)
+ans =
+
+2.00000 + 0.00000i -0.50000 - 0.28868i -0.50000 + 0.28868i
+5.00000 + 0.00000i -0.50000 - 0.28868i -0.50000 + 0.28868i
+8.00000 + 0.00000i -0.50000 - 0.28868i -0.50000 + 0.28868i
+ ]]></programlisting>
+</refsection>
+</refentry>
diff --git a/help/en_US/ifft2.xml b/help/en_US/ifft2.xml
new file mode 100644
index 0000000..02eb5f9
--- /dev/null
+++ b/help/en_US/ifft2.xml
@@ -0,0 +1,68 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from ifft2.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="ifft2" 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>ifft2</refname>
+ <refpurpose>Calculates the inverse two-dimensional discrete Fourier transform of A using a Fast Fourier Transform algorithm.</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ ifft2 (A, m, n)
+ ifft2 (A)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>A:</term>
+ <listitem><para> input matrix</para></listitem></varlistentry>
+ <varlistentry><term>m:</term>
+ <listitem><para> number of rows of A to be used</para></listitem></varlistentry>
+ <varlistentry><term>n:</term>
+ <listitem><para> number of columns of A to be used</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+This is an Octave function.
+It performs inverse two-dimensional FFT on the matrix A. m and n may be used specify the number of rows and columns of A to use. If either of these is larger than the size of A, A is resized and padded with zeros.
+If A is a multi-dimensional matrix, each two-dimensional sub-matrix of A is treated separately.
+</para>
+</refsection>
+
+<refsection>
+ <title>Examples</title>
+ <programlisting role="example"><![CDATA[
+x = [1 2 3; 4 5 6; 7 8 9]
+m = 4
+n = 4
+ifft2 (A, m, n)
+ans =
+
+2.81250 + 0.00000i -0.37500 + 0.93750i 0.93750 + 0.00000i -0.37500 - 0.93750i
+-1.12500 + 0.93750i -0.31250 - 0.50000i -0.37500 + 0.31250i 0.31250 + 0.25000i
+0.93750 + 0.00000i -0.12500 + 0.31250i 0.31250 + 0.00000i -0.12500 - 0.31250i
+-1.12500 - 0.93750i 0.31250 - 0.25000i -0.37500 - 0.31250i -0.31250 + 0.50000i
+ ]]></programlisting>
+</refsection>
+</refentry>
diff --git a/help/en_US/ifht.xml b/help/en_US/ifht.xml
new file mode 100644
index 0000000..e4e692b
--- /dev/null
+++ b/help/en_US/ifht.xml
@@ -0,0 +1,65 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from ifht.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="ifht" 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>ifht</refname>
+ <refpurpose>Calculate the inverse Fast Hartley Transform of real input D</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ m= ifht (d)
+ m= ifht (d,n)
+ m= ifht (d,n,dim)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>d:</term>
+ <listitem><para> real or complex valued scalar or vector</para></listitem></varlistentry>
+ <varlistentry><term>n:</term>
+ <listitem><para> Similar to the options of FFT function</para></listitem></varlistentry>
+ <varlistentry><term>dim:</term>
+ <listitem><para> Similar to the options of FFT function</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+Calculate the inverse Fast Hartley Transform of real input d. If d is a matrix, the inverse Hartley transform is calculated along the columns by default. The options n and dim are similar to the options of FFT function.
+ </para>
+ <para>
+The forward and inverse Hartley transforms are the same (except for a scale factor of 1/N for the inverse hartley transform), but implemented using different functions.
+ </para>
+ <para>
+The definition of the forward hartley transform for vector d, m[K] = 1/N \sum_{i=0}^{N-1} d[i]*(cos[K*2*pi*i/N] + sin[K*2*pi*i/N]), for 0 &lt;= K &lt; N. m[K] = 1/N \sum_{i=0}^{N-1} d[i]*CAS[K*i], for 0 &lt;= K &lt; N.
+</para>
+</refsection>
+
+<refsection>
+ <title>Examples</title>
+ <programlisting role="example"><![CDATA[
+ifht(1 : 4)
+ifht(1:4, 2)
+ ]]></programlisting>
+</refsection>
+</refentry>
diff --git a/help/en_US/ifwht.xml b/help/en_US/ifwht.xml
new file mode 100644
index 0000000..37903a0
--- /dev/null
+++ b/help/en_US/ifwht.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from ifwht.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="ifwht" 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>ifwht</refname>
+ <refpurpose></refpurpose>
+ </refnamediv>
+
+</refentry>
diff --git a/help/en_US/invfreq.xml b/help/en_US/invfreq.xml
new file mode 100644
index 0000000..38f2da3
--- /dev/null
+++ b/help/en_US/invfreq.xml
@@ -0,0 +1,69 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from invfreq.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="invfreq" 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>invfreq</refname>
+ <refpurpose>Calculates inverse frequency vectors</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ [B,A] = invfreq(H,F,nB,nA)
+ [B,A] = invfreq(H,F,nB,nA,W)
+ [B,A] = invfreq(H,F,nB,nA,W,[],[],plane)
+ [B,A] = invfreq(H,F,nB,nA,W,iter,tol,plane)
+
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>H:</term>
+ <listitem><para> desired complex frequency response,It is assumed that A and B are real polynomials, hence H is one-sided.</para></listitem></varlistentry>
+ <varlistentry><term>F:</term>
+ <listitem><para> vector of frequency samples in radians</para></listitem></varlistentry>
+ <varlistentry><term>nA:</term>
+ <listitem><para> order of denominator polynomial A</para></listitem></varlistentry>
+ <varlistentry><term>nB:</term>
+ <listitem><para> order of numerator polynomial B</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+Fit filter B(z)/A(z) or B(s)/A(s) to complex frequency response at frequency points F. A and B are real polynomial coefficients of order nA and nB respectively. Optionally, the fit-errors can be weighted vs frequency according to the weights W. Also, the transform plane can be specified as either 's' for continuous time or 'z' for discrete time. 'z' is chosen by default. Eventually, Steiglitz-McBride iterations will be specified by iter and tol.
+ </para>
+ <para>
+</para>
+</refsection>
+
+<refsection>
+ <title>Examples</title>
+ <programlisting role="example"><![CDATA[
+[B,A] = butter(12,1/4);
+[H,w] = freqz(B,A,128);
+[Bh,Ah] = invfreq(H,F,4,4);
+Hh = freqz(Bh,Ah);
+disp(sprintf('||frequency response error|| = %f',norm(H-Hh)));
+
+ ]]></programlisting>
+</refsection>
+</refentry>
diff --git a/help/en_US/master_help.xml b/help/en_US/master_help.xml
index 613d48a..084c015 100644
--- a/help/en_US/master_help.xml
+++ b/help/en_US/master_help.xml
@@ -1,199 +1,242 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE book [
<!--Begin Entities-->
-<!ENTITY abc34d904268ea0d68878f95dd4dc2b31 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/ac2poly.xml">
-<!ENTITY afada58a5f5efa94bcba150f3d7ef37ec SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/ac2rc.xml">
-<!ENTITY af43cf87eec8e014a9baf4bdd9f091652 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/arParEst.xml">
-<!ENTITY aeb72ef6afa5caac6c0198bf06e8d8d39 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/arburg.xml">
-<!ENTITY aaa1106b0c11e3c85c5fd3b254546d61d SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/arcov.xml">
-<!ENTITY ae9004011d22c5c9b12dc2e54d6812b21 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/armcov.xml">
-<!ENTITY a4caa34fab913bd6c4272de961a55bca2 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/aryule.xml">
-<!ENTITY a25e614283dd3e99e0fb093d1db465868 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/barthannwin.xml">
-<!ENTITY a0c94bc97d460f725b92f352b99c87e60 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/bartlett.xml">
-<!ENTITY aa116b32936e2bbc43a1851815477dc50 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/besself.xml">
-<!ENTITY a717bcfb5b33c5617b6df4a88a35825db SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/bitrevorder.xml">
-<!ENTITY a2e363437a83944ea4bbda8ba05793277 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/blackman.xml">
-<!ENTITY ab875fac05c1cb152e9967692ffbdd97d SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/blackmanharris.xml">
-<!ENTITY ac5b61ab1229ad20d8229654f2a877f9e SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/blackmannuttall.xml">
-<!ENTITY a67d33687ff3441293c015e9f53640d4b SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/bohmanwin.xml">
-<!ENTITY aa33653ce5f6a767a34177a92dad8831d SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/boxcar.xml">
-<!ENTITY ac9bfbd0f547b9f7951782fffc297ce8f SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/buffer.xml">
-<!ENTITY a92ca529f2e4c50ecbb42fe6ac66b4ad7 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/butter.xml">
-<!ENTITY aac95818ba66b9133270a9b65f48f4512 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/buttord.xml">
-<!ENTITY acc531aceceaba9ba5f63feb980982703 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/cconv.xml">
-<!ENTITY a9763f77681100b2386601412d6c68a45 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/cell2sos.xml">
-<!ENTITY a2e5fe5c92463618e3ac3eb6184a6514c SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/cheb1ord.xml">
-<!ENTITY a3d1f4797b814d4d10c4b1cd0a2316e6e SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/cheb2ord.xml">
-<!ENTITY a68acc0f447018aa08e92e1d6480e95fb SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/chebwin.xml">
-<!ENTITY ae603f65da6a3448e705b61733191f7e1 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/cheby1.xml">
-<!ENTITY a489b609c7baa2574b60744c9a166b350 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/cheby2.xml">
-<!ENTITY a87213ae4b598affb9e51c3ff77957951 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/check.xml">
-<!ENTITY a89b1c9d29d8ea8a842fbbbff731a4ccf SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/chirp.xml">
-<!ENTITY aeec63d2941febda586e272ca0d7e09e9 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/clustersegment.xml">
-<!ENTITY ae2ea4b53ce51be512488c507ba5c1a97 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/cmorwavf.xml">
-<!ENTITY a2a8b19d4177c255e54f833c3e9c12de4 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/convmtx.xml">
-<!ENTITY af5072b843b624620f72a1118678bb51c SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/corrmtx.xml">
-<!ENTITY a219b5a6958a48155175d7f125e0225b6 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/cummax.xml">
-<!ENTITY a4892c6c6a094e865579eaa9fa0a1e315 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/cummin.xml">
-<!ENTITY a20ba3985f003711dfcd6ae4a8aed4da3 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/db.xml">
-<!ENTITY a498a173a5431d9ca778f08732ad009a3 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/db2pow.xml">
-<!ENTITY aa34b60fddd5a0bc48a0e0bdb88c05f5e SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/dctmtx.xml">
-<!ENTITY af72c46e1f46388131554d782c87bdca6 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/decimate.xml">
-<!ENTITY a56ca039cf45f00657429ca5b3ffdba4d SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/dftmtx.xml">
-<!ENTITY aad227216b9d9295f4e5f8bd814752253 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/diric.xml">
-<!ENTITY a81fd5d7c924a096b87772397a39e4120 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/downsample.xml">
-<!ENTITY ac98a73fed750316df035079d993cb1bb SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/dutycycle.xml">
-<!ENTITY a5cfe9eeac1c4924f6a0caf3e1840568d SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/ellip.xml">
-<!ENTITY ad14407366297f5e3bf8f6ffdcca387f7 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/ellipord.xml">
-<!ENTITY a51500db596c6a52603289ec898acc619 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/enbw.xml">
-<!ENTITY aeaa1b542fe025ff3036e68a9da64527d SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/eqtflength.xml">
-<!ENTITY ac3468da1f742c3072a382a126c9cfd90 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/falltime.xml">
-<!ENTITY acf22d1bd8ee068dd275bed4ba7de0bb0 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/fftfilt.xml">
-<!ENTITY aaf23de4d23842978c02d8fc01d0f8d89 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/filternorm.xml">
-<!ENTITY a1bb421658889ced3f6956d6d223af831 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/filtfilt.xml">
-<!ENTITY a041cc2a85cc205a5280ff2cae0565aad SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/filtic.xml">
-<!ENTITY ab9bfb86cd1cf6ba152f3c449acb53388 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/filtord.xml">
-<!ENTITY ac5190b237eb80bce61bbb4731ebceaee SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/firpmord.xml">
-<!ENTITY a54eab5301da6f8ad94a0fc666a534f62 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/firtype.xml">
-<!ENTITY aa76196c36e5195482e23ee95909d6a4c SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/flattopwin.xml">
-<!ENTITY a02e375d7ce5589ce592ef3e186e8c6a5 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/fracshift.xml">
-<!ENTITY ab4ef5778ac13a477d0131b5d8dade1e4 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/fwhm.xml">
-<!ENTITY a76e1e372415f1013b0f4fd861c56f2ea SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/fwhmjlt.xml">
-<!ENTITY ad08ce8e4fb40cfb3416c522ca5738730 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/gauspuls.xml">
-<!ENTITY ac2cf40da1bec1c1f630828ed99d9fa7c SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/gaussdesign.xml">
-<!ENTITY a235f867faca505720e2e2fc0dc7523ee SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/gaussian.xml">
-<!ENTITY a5acb91e6d8e981bd43ac949272ce5fc1 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/gausswin.xml">
-<!ENTITY a0c437c94f4c9554d2eadc1299bc201c6 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/gmonopuls.xml">
-<!ENTITY a34b064123c25ed2a3df8772bc9148fa4 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/goertzel.xml">
-<!ENTITY a27489d7d314a41da10ff2ea221dc99bd SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/grpdelay.xml">
-<!ENTITY a4a70061acbb347c0c6dbc7efc58a825b SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/hann.xml">
-<!ENTITY a050f686ed9bf3b9bbaeafa85839f88ea SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/helperHarmonicDistortionAmplifier.xml">
-<!ENTITY a6907d352bc8acb64f7672236214e003a SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/icceps.xml">
-<!ENTITY ab7d38187b4f79ff0529d4c4c08b1d633 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/iirlp2mb.xml">
-<!ENTITY a600b90a016f69bf4507022af617c8112 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/impinvar.xml">
-<!ENTITY a130a6a07303e6d40c88cc13f0df4f677 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/impz.xml">
-<!ENTITY a47f33d823a99a5b6ba0700bd44f2eedb SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/impzlength.xml">
-<!ENTITY ad090a8d9058532d5b76d3c76f0927647 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/interp.xml">
-<!ENTITY ac086f90347e9bff367792faa5b55509c SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/intfilt.xml">
-<!ENTITY a80d3837625985b4ea64c9fb8d21a2154 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/invimpinvar.xml">
-<!ENTITY a00aa26c59c877bc3fe918913a5da59df SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/is2rc.xml">
-<!ENTITY a7b1fc3f4b6f003df1d6b163f86ac2cc3 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/isallpass.xml">
-<!ENTITY ae4939978b945c2ba1d557b03cae30f84 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/isfir.xml">
-<!ENTITY a290d00bd7c190f11aaa874430258d909 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/islinphase.xml">
-<!ENTITY ac1eea02afda4611561e359db55539ef3 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/ismaxphase.xml">
-<!ENTITY a5471ee2b25863bf6a2f32aa99bf0b1c8 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/isminphase.xml">
-<!ENTITY a56bbf2b805d1f7e17247cef64ba19333 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/isstable.xml">
-<!ENTITY a37b6cebea1cde28601d71ea61001135f SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/kaiser.xml">
-<!ENTITY ab1ff3a3177d5412fce2d774a0cbb8c04 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/lar2rc.xml">
-<!ENTITY ad4faf7dd15d7fd892712492de869c180 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/latc2tf.xml">
-<!ENTITY a4a3dadddb6771053aa2c974bfa0c7b4a SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/latcfilt.xml">
-<!ENTITY acdd93d2eb52543e9e5e06a19b2be5300 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/latcfilt1.xml">
-<!ENTITY a3322b2e8d12982e95f7abd7c07be5d83 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/levdown.xml">
-<!ENTITY a405effc0095937f90e8796ab83a45b38 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/levin.xml">
-<!ENTITY ae537f60631062b3ad18ef244696dd073 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/levinson.xml">
-<!ENTITY ab70a5bb921a249a9b2de0cc6b84dfcac SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/lpc.xml">
-<!ENTITY a5eb03112f6aff7cf39f302d26b66f51d SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/lsf2poly.xml">
-<!ENTITY a9c1d71942abd1f1624fcfb3e40024f17 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/mag2db.xml">
-<!ENTITY ae4765bc27b678fde77e1a1e12d0312e1 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/marcumq.xml">
-<!ENTITY acd281019889eb8f2a87aa9bbfdfff93e SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/medfilt1.xml">
-<!ENTITY a24442538c82a64f05197b0685b94062e SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/mexihat.xml">
-<!ENTITY adebab30e287f1744d68510915dd3dca3 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/meyeraux.xml">
-<!ENTITY af192b03d06b90eb3dfd41194c886a010 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/midcross.xml">
-<!ENTITY a8b754f3c797b791b0773a17091b92d47 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/modulate.xml">
-<!ENTITY a4409d7ece46667d2c6c236a19699a2db SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/morlet.xml">
-<!ENTITY aae7674d788c35e75f2a52af92dc855bc SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/movingrms.xml">
-<!ENTITY a7022b9d1c7c194f27b1dd6bc4e093697 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/musicBase.xml">
-<!ENTITY aef8e0226f6126afb2453e659221e7330 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/nnls.xml">
-<!ENTITY aecbf6dfa1f6fa4c17585ac7e4eff69ef SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/nuttallwin.xml">
-<!ENTITY a2d885644b44b3b9676bb9522b2302d9e SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/parzenwin.xml">
-<!ENTITY acc65fd8696943e1a4b7a1515adfac26d SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/pchip.xml">
-<!ENTITY aeae065e98e5caf4232a0aecc3a78dae6 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/pchips.xml">
-<!ENTITY a4ca7eb2183d94674b01f6b4d20a0a8f3 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/peak2peak.xml">
-<!ENTITY a2e2ff138201e7a3c659cc2e16a226ea5 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/peak2rms.xml">
-<!ENTITY a418de0bebfad1312e130535833127f08 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/peig.xml">
-<!ENTITY a96429758f8b959e506c7a66d5b360b54 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/periodogram.xml">
-<!ENTITY a917d366f9f46037f6a8e01126615b102 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/phaseInputParseAs_ab.xml">
-<!ENTITY a772a38fab08d7eabf51280d2ceb5d8d9 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/phaseInputParseAs_sos.xml">
-<!ENTITY aa9a5966969f01fa9d4edd7ff3423f006 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/phasedelay.xml">
-<!ENTITY a91870007b51d3fd0800610d83a035fde SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/phasez.xml">
-<!ENTITY a816b52645e1bf16373e1a72ea585a009 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/pmusic.xml">
-<!ENTITY af5fb964c532696b13e8a01d8f16fe052 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/poly2ac.xml">
-<!ENTITY a0276d0be96a5fa3418c6a444c4b85442 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/poly2lsf.xml">
-<!ENTITY af86865824018a287588e17662223dcaa SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/poly2rc.xml">
-<!ENTITY a4d7ecaad3186ac096d933689e251a1c2 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/polyscale.xml">
-<!ENTITY a44f0c49020c51a70c39d3853e515495d SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/polystab.xml">
-<!ENTITY afcfb3d20fc86ed90b62e99fbf0ca8fd0 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/polyval.xml">
-<!ENTITY a5585324c3dd5301043788660ce0f36ca SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/pow2db.xml">
-<!ENTITY a69a13bf7bf2c2d1704ddebfff33c94be SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/primitive.xml">
-<!ENTITY ab1453252bafa29241202516166a9f783 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/prony.xml">
-<!ENTITY a6db0813748b2ce47693ca82e8208bbb8 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/pulseperiod.xml">
-<!ENTITY a7d6411a5dd16d795cf44bbe48c3289ad SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/pulsesep.xml">
-<!ENTITY a15e621608a3503fb64669da1d9ca8619 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/pulsewidth.xml">
-<!ENTITY a7c72c8a8d7d554e521e83060089815fa SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/pulstran.xml">
-<!ENTITY a7c8bf8293a571fb2d6d94dc53959266a SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/rc2ac.xml">
-<!ENTITY ab54c5530e341558ddfc71ec8ffb45aac SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/rc2is.xml">
-<!ENTITY a9b8b0d208fe7a2581097650c4eed31bf SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/rc2lar.xml">
-<!ENTITY a9fa8430a1f63fbea843dbadf6aa070ab SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/rc2poly.xml">
-<!ENTITY a9114be05b5cf59a0cffc8921b4d5f918 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/rcosdesign.xml">
-<!ENTITY a9b1d2e56d8d2907f6b9fb0f20f641573 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/rectpuls.xml">
-<!ENTITY a8f8cb27d2a1e48303a9597f4e60e731b SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/rectwin.xml">
-<!ENTITY a050b38bceab9f2dd907cbbb0d14ab2f4 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/resample.xml">
-<!ENTITY a716d878bc9e3e1fb19a5357ef70823f7 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/residued.xml">
-<!ENTITY a6afb5f3f3514b7e47d13299e5064d0af SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/residuez.xml">
-<!ENTITY aa8df37d359b12284be2e59d98627db73 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/risetime.xml">
-<!ENTITY a111a8fca523b8646d1eb526a08cb5f10 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/rlevinson.xml">
-<!ENTITY a8c6457516ccc6e7306473da4a6b17fd9 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/rms.xml">
-<!ENTITY a55b3b05f765c3883176f3139680ee4c0 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/rooteig.xml">
-<!ENTITY a941c0f7793607300f531db0534ec3698 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/rootmusic.xml">
-<!ENTITY a7f91887a7293318872b7170cf01404c3 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/rssq.xml">
-<!ENTITY abaa1ff6608a326ef22ef237cdf7dc0c1 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/sampled2continuous.xml">
-<!ENTITY ab1b710cbacc3b7e1934f3ee160f6f21e SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/sawtooth.xml">
-<!ENTITY a92ee012c477116f5f712c772e9cf4642 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/schtrig.xml">
-<!ENTITY a90aa1e8c11381cf0903d47492fe76003 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/schurrc.xml">
-<!ENTITY a19e3effbd0be032c384f4d29f088b26b SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/seqperiod.xml">
-<!ENTITY a962cc0afc86fe9cfb3c725b2fb3fc8a7 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/sgolay.xml">
-<!ENTITY a23b2c788dac918bb541cee278c217004 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/sgolayfilt.xml">
-<!ENTITY a375c8e3fce488c88fd2ad58e421cb109 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/shanwavf.xml">
-<!ENTITY a05ea7008eb727c478f18a19acf34e221 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/shiftdata.xml">
-<!ENTITY a9058a43e855325dd2da653945e7c5317 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/slewrate.xml">
-<!ENTITY ab55327a4128934be29626f54b82503e3 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/sos2cell.xml">
-<!ENTITY a18ff41a908bdd56dea489618073337b1 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/sos2ss.xml">
-<!ENTITY a92170f9f580f031accbbfc82dd265808 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/sos2tf.xml">
-<!ENTITY a80926c0c0f8f3797be07e7275c8dcdb5 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/sos2zp.xml">
-<!ENTITY a72cacbd2a95ba7e1c27d8220b58a1681 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/sosbreak.xml">
-<!ENTITY a625e1803c72496b56195689f9388f40e SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/sosfilt.xml">
-<!ENTITY a1cdc594306227014fb9570da9fdfaba5 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/specgram.xml">
-<!ENTITY aaa714a94f0c1e251775fd03f088f3589 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/ss2sos.xml">
-<!ENTITY af64d9784de8ecdcce28f1963d081aa2a SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/statelevels.xml">
-<!ENTITY a76a6fdb476060a229f6bb52e29d99667 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/stmcb.xml">
-<!ENTITY a984843fd00f52de0c91d72a2f2d35c60 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/strips.xml">
-<!ENTITY aa68766b620d78caaa210ddf54e4740c6 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/subspaceMethodsInputParser.xml">
-<!ENTITY a9498b8e51ebd5d30b14e4ae51f11a0e4 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/tf2sos.xml">
-<!ENTITY a414cd2bf4fbb0240eb4cb3cc3193e8a5 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/tf2zp.xml">
-<!ENTITY a92393e692247c0be55c2903ed953eb1f SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/tf2zpk.xml">
-<!ENTITY ae56eae8fd9fe4b5607eb687d41a62a8d SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/transpose.xml">
-<!ENTITY a2613023045f6fa97a511ae290196314e SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/trial_iirlp2mb.xml">
-<!ENTITY aa402b99039e77ec462ad76fb8b80b145 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/triang.xml">
-<!ENTITY ab8d6a07007057c840f1b7afc44a04a38 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/tripuls.xml">
-<!ENTITY a71e0df8a7f16e193b7907129844a566b SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/truth.xml">
-<!ENTITY a61f5fce0a9ccf631897caf0b1580cb79 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/tukeywin.xml">
-<!ENTITY a98e791bec81dfb22d09ccc4e1cebf498 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/udecode.xml">
-<!ENTITY a8169e81c662c3c6f99fcfd31a716f003 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/uencode.xml">
-<!ENTITY a61486111f2c5646c41de7852a40890d3 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/ultrwin.xml">
-<!ENTITY a9ba6cffd73212e01a5a1cf48c370f31b SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/unshiftdata.xml">
-<!ENTITY a5ff4fb227aad23a52510b08738d06635 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/upfirdn.xml">
-<!ENTITY a624b692de7106f79b52675e6f6e864db SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/upsample.xml">
-<!ENTITY ab5ec2471f2a87567d2eda164da9cfc88 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/upsamplefill.xml">
-<!ENTITY a7f2f6a5c9d5ae84e00a33bc655680cbc SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/var.xml">
-<!ENTITY a86c828962a88c80762ba774eb4689015 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/vco.xml">
-<!ENTITY a1ec494594cb2a65f69a4c305135a03dc SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/welchwin.xml">
-<!ENTITY a3024e7b1d5ec82a1746c1bb317b05bdd SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/window.xml">
-<!ENTITY ae56b79980853d5c39cda79745ad43e1c SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/wkeep.xml">
-<!ENTITY afb072dbcb7e8025a801eb32f37a69dfb SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/wrev.xml">
-<!ENTITY a9cce784055276e298cf721d8e269c31c SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/xcorr2.xml">
-<!ENTITY ad84d3dcc40317a06780d4e68cbec8db0 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/zerocrossing.xml">
-<!ENTITY a522ad212c78230cdbad7a4a0d8daaadd SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/zp2sos.xml">
-<!ENTITY ad0a91e7320d3da715c8e58990f5397a4 SYSTEM "/home/tushar/Documents/IITB/Toolbox/FOSSEE-Signal-Processing-Toolbox/help/en_US/zplane.xml">
+<!ENTITY a231328952124a7e187905e71aaf9cee0 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/ac2poly.xml">
+<!ENTITY acc27042e738d175d1131be40ac8443e4 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/ac2rc.xml">
+<!ENTITY a00c7c9f2a0021ff13869dce3b90df38c SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/arParEst.xml">
+<!ENTITY a2801dc954ec6ac2e1c314367aab7316b SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/arburg.xml">
+<!ENTITY aa86636858e7127f17b93747fc8f3ec30 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/arcov.xml">
+<!ENTITY a2804cc9a113729444d60d8cf3c14b554 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/armcov.xml">
+<!ENTITY a78af20f681c48f8ec298b379b34418b7 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/aryule.xml">
+<!ENTITY af1b518d74e5b9c0251ecb1df257eb407 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/barthannwin.xml">
+<!ENTITY af8a337c857d4b373e49c0032acb1370f SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/bartlett.xml">
+<!ENTITY a8db037e6c34a1ac0f7db27577e08e15d SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/besselap.xml">
+<!ENTITY a31f48c823b3b36a8c44e96ff54eaf66a SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/besself.xml">
+<!ENTITY a4965260600d5ae3055dc940551b4155a SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/bitrevorder.xml">
+<!ENTITY a203e8f0f36fcdb6d7dab204312a41134 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/blackman.xml">
+<!ENTITY a33562ce8ee2b64f5e49f771f94e64714 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/blackmanharris.xml">
+<!ENTITY a2ead104a959d0030deacd8bfd726d641 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/blackmannuttall.xml">
+<!ENTITY affed76d132b047f7e7dd7feaf7460b96 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/bohmanwin.xml">
+<!ENTITY a9a73fbe4c732d8d281a15b9c56b66cd7 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/boxcar.xml">
+<!ENTITY af063a7c3d52b3fc249eccfea5477233a SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/buffer.xml">
+<!ENTITY a6b85a8141239aa12da5fd722e12764c5 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/buttap.xml">
+<!ENTITY ac13ce08d83a0b050bbcd34097be69474 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/butter.xml">
+<!ENTITY a3ac1d95c0377fbd5021c9ab3878d3381 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/buttord.xml">
+<!ENTITY a8bfbf0158cec14ad1852c16a1bcd1a9f SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/cceps.xml">
+<!ENTITY aad687051b3ff18c103250462607b8bfe SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/cconv.xml">
+<!ENTITY ae12b60324a0fd39a6eaeaa29154462d3 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/cell2sos.xml">
+<!ENTITY a952ffa1c6ec05774d717ea1a51c966c7 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/cheb.xml">
+<!ENTITY a63809fd4817619e419316a6fb51f2478 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/cheb1ap.xml">
+<!ENTITY a67189797ee7307d2f12d2d9db1429d16 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/cheb1ord.xml">
+<!ENTITY a6f811f8e27e331fa279fc0462a6dd852 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/cheb2ap.xml">
+<!ENTITY af57064694f5b9424a2fb945bab08663a SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/cheb2ord.xml">
+<!ENTITY a788630ff50c6129a3217a8b029fdb706 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/chebwin.xml">
+<!ENTITY ad67eb98c7a334e2ccd2584c52d1f7490 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/cheby1.xml">
+<!ENTITY a9aaa53086cfad7fff7a9568a895c584e SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/cheby2.xml">
+<!ENTITY a80fd0493bf42ae683bb78ef95ecc8ff1 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/check.xml">
+<!ENTITY a1dc032779f7ba8e8f69e8f79dfb144d5 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/chirp.xml">
+<!ENTITY a5bf1548e6f5419396992c7e5fee10e44 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/clustersegment.xml">
+<!ENTITY a675cd787aff166461d9e9da55d591875 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/cmorwavf.xml">
+<!ENTITY adc56a73851265426ed0c3db40f3a0d2e SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/convmtx.xml">
+<!ENTITY a3d40cac540363daecb58818938d2b1d3 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/corrmtx.xml">
+<!ENTITY ad2840257a4ded4da25428645e8a8fd22 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/cplxreal.xml">
+<!ENTITY abaaa2a634a57347cfaeb3f75cc42b298 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/cummax.xml">
+<!ENTITY ae8d01defeace3e366cfdce71da71d5e2 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/cummin.xml">
+<!ENTITY a76e2baa7f20cd4d2b517c7f65f4b0a87 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/czt.xml">
+<!ENTITY a438b318f3a65f8e10cb292c16ee48d3d SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/db.xml">
+<!ENTITY a012dc78292d46d1a6bfdd411607796ae SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/db2pow.xml">
+<!ENTITY a4c9381ac38659e2e9ccdf89e9aec08f9 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/dctmtx.xml">
+<!ENTITY a732f6e560fa62dcfe2137f94ce0b812b SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/decimate.xml">
+<!ENTITY a8e9030fad0ea16388695b20a07e04334 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/dftmtx.xml">
+<!ENTITY a3ffbb42a185eaf6b62029b6efc883d6b SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/diric.xml">
+<!ENTITY ac93a3534190eae2db767de3935ad4fbc SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/downsample.xml">
+<!ENTITY afe6460b06ca50c9c2d156ea6806d2ed9 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/dst1.xml">
+<!ENTITY a52aa309fac8ef71cd8d143ac51969fe0 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/dutycycle.xml">
+<!ENTITY aa0ecb21a4fba74cd96dd91d64d4f13ef SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/ellip.xml">
+<!ENTITY a54ce5c2d68eb85b370486a8657432e59 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/ellipap.xml">
+<!ENTITY ae7e31ef8153e0b43af5b7d3b54f281b8 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/ellipord.xml">
+<!ENTITY a0d95063280ebe0c559bd51e94d6809cb SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/enbw.xml">
+<!ENTITY a528ea74a7c6d6e7453f0a50c2b96a9ee SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/eqtflength.xml">
+<!ENTITY ae0c094a4d283763517f2a9d8dc2d47dd SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/falltime.xml">
+<!ENTITY a61dce7ba646ca92aaf5a1ba090aa25e4 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/fft.xml">
+<!ENTITY ad146f651e2b3ae0f2c4548c9d31b9324 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/fft2.xml">
+<!ENTITY a093a9f733664f253ef62c57cbfd1f345 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/fftfilt.xml">
+<!ENTITY ad9f3946f61509aa68a6555cc8e1e89c4 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/fht.xml">
+<!ENTITY a0b5dd6bfc7c995741ff59cb1f2e6bd9d SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/filternorm.xml">
+<!ENTITY a6f9f6be023cda42def4540ebe4a826ad SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/filtfilt.xml">
+<!ENTITY ab3a31ebfc4f38ef5c568256700871cf9 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/filtic.xml">
+<!ENTITY aaadfeefbe7128b3e19dfcf58d9259fba SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/filtord.xml">
+<!ENTITY a73e8c044770a7cfd905f857689a6baa1 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/firpmord.xml">
+<!ENTITY a94e89cc06baa492675fb0ba33b84c454 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/firtype.xml">
+<!ENTITY a19950da21e14157b78311a84cf566c31 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/flattopwin.xml">
+<!ENTITY a997024f7f60a0e9b5b06fb25b4549196 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/fracshift.xml">
+<!ENTITY a60063fcaf779858435eab52d0438f7c0 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/freqs.xml">
+<!ENTITY a5b1b81f5a27ba264b58d0ede7bf40d6e SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/fwhm.xml">
+<!ENTITY aaa8fd7d64f02100f0ff4b9f5a601b502 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/fwhmjlt.xml">
+<!ENTITY a6c84bcba9eda7daf35794f2c2b1cfc36 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/fwht.xml">
+<!ENTITY a5a10dacc8f7724140837e716eefea546 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/gauspuls.xml">
+<!ENTITY a241d399410079c666c88bab68b4bd8b6 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/gaussdesign.xml">
+<!ENTITY a6091479f1738a3f05872855ff81f767e SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/gaussian.xml">
+<!ENTITY a79d0e19a419a4da0e9852a883c56e875 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/gausswin.xml">
+<!ENTITY acbf561fbe774483d5bdd6bb94f356c92 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/gmonopuls.xml">
+<!ENTITY a829161f2b17c647cab27ce7e4e177861 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/goertzel.xml">
+<!ENTITY a09f64c6e5d7a6e94067ecb6f99796457 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/grpdelay.xml">
+<!ENTITY a277e25e2845fbbffbb98cb9bd813d43e SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/hann.xml">
+<!ENTITY a350fe0538e119f50421b72fb0177d862 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/hanning.xml">
+<!ENTITY a89a8d615b106b54285bf3493164dde99 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/helperHarmonicDistortionAmplifier.xml">
+<!ENTITY a5d806f19e64dff92d1430af2e3d36434 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/hilbert1.xml">
+<!ENTITY a93018e4b205ad1077ed39b70108ab6f5 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/hurst.xml">
+<!ENTITY a564da052a4377e3262d3e2eaaff74169 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/icceps.xml">
+<!ENTITY a55af75fd2a9b6cd5cd41835b0a2cc3b9 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/idct1.xml">
+<!ENTITY af8c65bd6904096611c2566ec57c5b032 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/idct2.xml">
+<!ENTITY a6fd54fa41c0d83b890ecda9094cd757f SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/idst1.xml">
+<!ENTITY a9a5ec7990aa1e0ee187582dfea2e2f18 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/ifft.xml">
+<!ENTITY a6c98b32822a438724a01bbbc3c6e8972 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/ifft2.xml">
+<!ENTITY a414728f3a3bc742adaead017680e9eb1 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/ifht.xml">
+<!ENTITY a2992435e7a3da65808422b5922e44afd SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/ifwht.xml">
+<!ENTITY a056e2f09f5221e8999a0fea1c1fa878d SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/iirlp2mb.xml">
+<!ENTITY a9142e379fc897ce07ddb4601b5f6eff9 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/impinvar.xml">
+<!ENTITY adc184a6cbbaa2bb5ce1233a789ac1f35 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/impz.xml">
+<!ENTITY a05f89038eb00b07e70e0873d8d1dfdbd SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/impzlength.xml">
+<!ENTITY a2fb2ab4d09d36ef1d84d3666c77ea926 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/interp.xml">
+<!ENTITY a3d73ca698d63b8e1aca3d442d62d67c8 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/intfilt.xml">
+<!ENTITY a17c1049c0e838c40c3d0c6330a1ed18e SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/invfreq.xml">
+<!ENTITY a9f42719de3232f6757f8f9645f04d2ba SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/invimpinvar.xml">
+<!ENTITY aa2dde2bdf03f823c2c8bcbe7c32ac6f5 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/is2rc.xml">
+<!ENTITY a1341fabc85cc66d9215f09a3b3389f21 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/isallpass.xml">
+<!ENTITY a9582da81a2996f4949f3a56504ac7af0 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/isfir.xml">
+<!ENTITY af06621ea64b7432870e0c9de816a7a3f SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/islinphase.xml">
+<!ENTITY aedaf12b58709e4d66d9594c045e7fab9 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/ismaxphase.xml">
+<!ENTITY a076a06248e94759c2531feb6af82b4b2 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/isminphase.xml">
+<!ENTITY a550cb394018ff7036f3bf7ed85cd894a SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/isstable.xml">
+<!ENTITY aadd3778bbb3c69186062e83df88617b6 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/kaiser.xml">
+<!ENTITY ae880c6aad471ddeadec92a73990a8916 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/lar2rc.xml">
+<!ENTITY a3a1de36d214f8b24968c347990a780ca SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/latc2tf.xml">
+<!ENTITY afd0accae740fccac83b6e58da7ad7f67 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/latcfilt.xml">
+<!ENTITY aaff1fbd30d203394a0065360948cb552 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/latcfilt1.xml">
+<!ENTITY a64409832c5b89c298638be3ae481e2db SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/levdown.xml">
+<!ENTITY a94b0fd913cff757ba932421487806ce2 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/levin.xml">
+<!ENTITY a501538e66b60a9dad666d8feebebc808 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/levinson.xml">
+<!ENTITY a2cd55936714d73ab7cfc5b191e1ab310 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/lpc.xml">
+<!ENTITY a5100d9ea14ecae777adf29449f8326bd SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/lsf2poly.xml">
+<!ENTITY a5d96b63e9d96e401c886dc2e59f352ae SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/mag2db.xml">
+<!ENTITY a7eb314d0aac7fe50a8b374d1fe09224a SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/marcumq.xml">
+<!ENTITY a5f1fdcf4bd80a0fdc97b1a66dc3d6126 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/medfilt1.xml">
+<!ENTITY aa6381ef62e04401a281532a2b26866e4 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/mexihat.xml">
+<!ENTITY ab54549e25f72917f5984976326446806 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/meyeraux.xml">
+<!ENTITY aad2ae34d6eb1330043839076bfe50370 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/midcross.xml">
+<!ENTITY a2cb9870e7f3797bd8079af0d6bd72c2a SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/modulate.xml">
+<!ENTITY a6f84b9f7d14410ce7b79c7e06629063c SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/morlet.xml">
+<!ENTITY ab20a31499c13238dfad5e6a9a47494a8 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/movingrms.xml">
+<!ENTITY af78d47b6f1d4f40097f16df906159928 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/musicBase.xml">
+<!ENTITY a39a1a3343fe803f4afaf048b8d1570f3 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/ncauer.xml">
+<!ENTITY a0d9a41d49a4663bd5ae6e17bce7f3f9d SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/nnls.xml">
+<!ENTITY ae90b90188af214c9b4bfbfd5186a57e3 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/nuttallwin.xml">
+<!ENTITY ab8ccec6c3405c19a470f1f3ca558ad07 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/parzenwin.xml">
+<!ENTITY a454451daa892c02d56805334a51be93f SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/pchip.xml">
+<!ENTITY ac1059f65770cbb8f7e8f63040d89272e SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/pchips.xml">
+<!ENTITY a66543787f73f1ce1e7be63649b30a3c7 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/peak2peak.xml">
+<!ENTITY acc1420fa4419b0f270ad3f8d342a3462 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/peak2rms.xml">
+<!ENTITY a61595e565a64e6b77b85a8028a66eea6 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/pei_tseng_notch.xml">
+<!ENTITY a995c78b83fbbea551450e7012f13797f SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/peig.xml">
+<!ENTITY a0442ccd02553bee97fde66f2838895ba SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/periodogram.xml">
+<!ENTITY a87c50c8b5be2390300fbfe46bb1ca120 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/phaseInputParseAs_ab.xml">
+<!ENTITY a02d1bdbd42659a3e4019d0498b14f321 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/phaseInputParseAs_sos.xml">
+<!ENTITY a9d6134bc5259cb5aeb088a6de56a1ec1 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/phasedelay.xml">
+<!ENTITY aa37bf7c43823e017babd5e030e712970 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/phasez.xml">
+<!ENTITY a9781f4c56bafacf94214fc66102348a2 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/pmusic.xml">
+<!ENTITY a169ef193b097a09b6d3ffec52f5f1485 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/poly2ac.xml">
+<!ENTITY acc6ca2c4223c6eb2605224fd487187d2 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/poly2lsf.xml">
+<!ENTITY a29996fb75db3d782680d4ca3f521df92 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/poly2rc.xml">
+<!ENTITY afd9713fe61540255e892066b5137e59d SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/polyscale.xml">
+<!ENTITY aa980f3c9624ae005414c12d7a877509e SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/polystab.xml">
+<!ENTITY a7d2647c034f43a9251e2db288609a1b7 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/polyval.xml">
+<!ENTITY a882da254da001f466eb31bbd41361a56 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/pow2db.xml">
+<!ENTITY a9bbded342cd4ef28c778daaa3422204c SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/primitive.xml">
+<!ENTITY a19ce5d9910772e73e9e89012e50e7b00 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/prony.xml">
+<!ENTITY a345e02cd34c617dbd3421a2105685535 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/pulseperiod.xml">
+<!ENTITY a6801e6f009157396cae1b490394153e1 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/pulsesep.xml">
+<!ENTITY aaa07642adb4af69e9b9b0e253ee2e09e SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/pulsewidth.xml">
+<!ENTITY a822b7b0a550b48a6c61f5d82f34fb2a6 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/pulstran.xml">
+<!ENTITY a0fb1810de5f83ec9ef3044ef50bea460 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/rc2ac.xml">
+<!ENTITY a3be9e2c9b768acd0dd7364298b0bfee5 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/rc2is.xml">
+<!ENTITY a29e745c3794d5108d4133e8779cc61f7 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/rc2lar.xml">
+<!ENTITY ae7f0ecf1810506f8d5417e97c2d11615 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/rc2poly.xml">
+<!ENTITY ad59b2b322970b02a5fb9d524a71f7beb SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/rceps.xml">
+<!ENTITY af8807cd3a5d1b02d4a288e796360fe2a SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/rcosdesign.xml">
+<!ENTITY a29e9c3d00fcd3169bd8354488b4977cb SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/rectpuls.xml">
+<!ENTITY ad7cebbbaa3e2ced9e0c9182662c86b8a SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/rectwin.xml">
+<!ENTITY a6fbe2bc6ace27b1a7b3efaae322ab6dc SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/remez1.xml">
+<!ENTITY ac5914c0be89a4c4439097765c0e7cecc SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/resample.xml">
+<!ENTITY a6da361fad125fe561580436a66d9d7bc SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/residued.xml">
+<!ENTITY ad2dfb1b46cc492f8d323e1b72dc22728 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/residuez.xml">
+<!ENTITY ab2e4570e0024f556a50f7fe8da8ba151 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/risetime.xml">
+<!ENTITY a04ef233b467060d4578b43b8971f38a3 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/rlevinson.xml">
+<!ENTITY ac097cbdcb4b28badcff3616e968aa3f7 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/rms.xml">
+<!ENTITY a6352349298514ffd575c2367e13c14b3 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/rooteig.xml">
+<!ENTITY a9ab8a24e5b3bc5753cc3cb6cb6de74b8 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/rootmusic.xml">
+<!ENTITY a299d9f2b3a06d39e69e093804117f40f SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/rssq.xml">
+<!ENTITY a712e3325216084f0ff29f772a41abce2 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/sampled2continuous.xml">
+<!ENTITY a4ce9f761027a046b75fe3e665393082f SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/sawtooth.xml">
+<!ENTITY a06bd86308806c0555e5fd4bf92e2b769 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/schtrig.xml">
+<!ENTITY ae3cd6a4ac731b860300da199c84af7a9 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/schurrc.xml">
+<!ENTITY a492bcb2ea4cbe2a4a1f7c0a6d0054c29 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/seqperiod.xml">
+<!ENTITY acfde8a4181328405e0f648d4aa9b843b SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/sgolay.xml">
+<!ENTITY ab3cbb2aaaf730a032674d18bc031731a SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/sgolayfilt.xml">
+<!ENTITY a877d0d12418f2bbc520a5d1403d62a32 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/shanwavf.xml">
+<!ENTITY af5fec193153f2dad9515f9b81d500410 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/shiftdata.xml">
+<!ENTITY a0c7f7373d0deae4317b309d407e54ed0 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/sigmoid_train.xml">
+<!ENTITY a4298bff4e637e7043203de25a4709e86 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/sinetone.xml">
+<!ENTITY a82677926514040027d5aeb5f81dc9208 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/sinewave.xml">
+<!ENTITY aa6b76788e36e0d6d7d2c1ec5d1604798 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/slewrate.xml">
+<!ENTITY aea7524fc34de97fc745d01ae564677a1 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/sos2cell.xml">
+<!ENTITY a10a36960bde6b0639f4f358216f704cf SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/sos2ss.xml">
+<!ENTITY a5feba38524659afdbe4015b645b45f4e SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/sos2tf.xml">
+<!ENTITY a862e51cacd34ba79921d6ba8fadc2e3d SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/sos2zp.xml">
+<!ENTITY ab3f2bf2ab34afc8e14ff23ada59fb889 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/sosbreak.xml">
+<!ENTITY ad5fcb6a854ea4ab1a826c2cfe506037e SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/sosfilt.xml">
+<!ENTITY ad6371d5f083f4ac4fd57fa369e3cce7f SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/specgram.xml">
+<!ENTITY a050855b5f4f81d6e0c1778748ef21573 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/spectral_adf.xml">
+<!ENTITY acfaa379418f785d6abf7e7745da20005 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/spectral_xdf.xml">
+<!ENTITY ab64c40cd49111b8db8a276e394939be8 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/spencer.xml">
+<!ENTITY a6d63448e238679b1ffcf82bb12f3ab56 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/ss2sos.xml">
+<!ENTITY a22391101c208e4851f12b2d38b1c940b SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/statelevels.xml">
+<!ENTITY adbd99bd46c01b285deaa3bcc1d9c6c42 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/stft.xml">
+<!ENTITY a55d26e66ea1393dcf99b7df5ba827b79 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/stmcb.xml">
+<!ENTITY a4d46b917ce6f500dce168ee18a1d17e6 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/strips.xml">
+<!ENTITY a1456cb0354e92a694fa9311ee5362daf SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/subspaceMethodsInputParser.xml">
+<!ENTITY af974230baefb26fbc56264ee4ddd9e72 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/synthesis.xml">
+<!ENTITY a74b148e7e471bd9f170cd4dc3087d2c9 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/tf2sos.xml">
+<!ENTITY a243b79cdb976d4f432450ea744ca236c SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/tf2zp.xml">
+<!ENTITY a9187ccad1c55b5cd1a5a900b17f2104b SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/tf2zpk.xml">
+<!ENTITY a805a0ed4cae04e01f29ecf5f82345622 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/transpose.xml">
+<!ENTITY a6e3552f90470c430b16dca28da599068 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/trial_iirlp2mb.xml">
+<!ENTITY aff0a00518280d05c9d58a7de46b1b160 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/triang.xml">
+<!ENTITY a5f191b2f9a255115bd43ce5e8c9dfe46 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/tripuls.xml">
+<!ENTITY ab455e53fbe01264634cd4b2a4eb4c907 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/truth.xml">
+<!ENTITY af62b68dd386718f8d27cb4d8364b8335 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/tukeywin.xml">
+<!ENTITY ad88190c86ecf59da91f5e21feb3a23c1 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/udecode.xml">
+<!ENTITY a735fd0a0700e104dbe5abbcd22ab616d SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/uencode.xml">
+<!ENTITY a378bace2a9b27a9198f9ffc3ba4efcb2 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/ultrwin.xml">
+<!ENTITY a64dae20703f14187621c3e22fca1ebe9 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/unshiftdata.xml">
+<!ENTITY ac34fae293643ed52873e880dddf91bc1 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/upfirdn.xml">
+<!ENTITY a97101bd7eb46f1029e6ea2a054d405ac SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/upsample.xml">
+<!ENTITY aab35d1b77962f2054fd115ad6f8eb120 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/upsamplefill.xml">
+<!ENTITY a1d535975c3fb7e7d8a0f9658e1c0f6c0 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/var.xml">
+<!ENTITY a091c9c305748e84d41eca16f78e2995f SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/vco.xml">
+<!ENTITY a41d68bfcb502a6ea6c94d0fdc154323b SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/wconv.xml">
+<!ENTITY aee101979a880a08e0a3c6cdbd958bdf8 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/welchwin.xml">
+<!ENTITY a08e5aa34c91e6ebaba8fc63e3af9fe31 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/window.xml">
+<!ENTITY a181e55fa472ec1667172b73625f1b776 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/wkeep.xml">
+<!ENTITY a4a8f4d8bf9f98af1fc99ba9328aa4a50 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/wrev.xml">
+<!ENTITY a812d9c22a396a5551693bb4d6dcae5b8 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/xcorr2.xml">
+<!ENTITY af95666e924be0e4cd14c6415f124f7d8 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/xcov1.xml">
+<!ENTITY ab4413930d155521ee36e3b7a19400809 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/yulewalker.xml">
+<!ENTITY a07861a28f3bed2170e83949b6e2c3809 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/zerocrossing.xml">
+<!ENTITY a99676709afd29b9c0701a4ca0e97365e SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/zp2sos.xml">
+<!ENTITY ac4b6feabfcffe4748eea06cf81d6c28b SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/zp2ss.xml">
+<!ENTITY a9eb5dbeb1370f1a1f23b414438b423b7 SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/zp2tf.xml">
+<!ENTITY a61b6ccda9c51a7fb92674a98fd9f358a SYSTEM "/home/abhinav/Documents/IITB/Repos/FOSSEE-Signal-Processing-Toolbox/help/en_US/zplane.xml">
<!--End Entities-->
]>
<book version="5.0-subset Scilab" xml:lang="en_US"
@@ -208,200 +251,243 @@
<title>FOSSEE Signal Processing Toolbox</title>
</info>
-<part xml:id='section_cc2bc01c47967d47fcf3507a91d572ba'>
+<part xml:id='section_5118e822ecc2888aa80042108de4932e'>
<title>FOSSEE Signal Processing Toolbox</title>
-&abc34d904268ea0d68878f95dd4dc2b31;
-&afada58a5f5efa94bcba150f3d7ef37ec;
-&af43cf87eec8e014a9baf4bdd9f091652;
-&aeb72ef6afa5caac6c0198bf06e8d8d39;
-&aaa1106b0c11e3c85c5fd3b254546d61d;
-&ae9004011d22c5c9b12dc2e54d6812b21;
-&a4caa34fab913bd6c4272de961a55bca2;
-&a25e614283dd3e99e0fb093d1db465868;
-&a0c94bc97d460f725b92f352b99c87e60;
-&aa116b32936e2bbc43a1851815477dc50;
-&a717bcfb5b33c5617b6df4a88a35825db;
-&a2e363437a83944ea4bbda8ba05793277;
-&ab875fac05c1cb152e9967692ffbdd97d;
-&ac5b61ab1229ad20d8229654f2a877f9e;
-&a67d33687ff3441293c015e9f53640d4b;
-&aa33653ce5f6a767a34177a92dad8831d;
-&ac9bfbd0f547b9f7951782fffc297ce8f;
-&a92ca529f2e4c50ecbb42fe6ac66b4ad7;
-&aac95818ba66b9133270a9b65f48f4512;
-&acc531aceceaba9ba5f63feb980982703;
-&a9763f77681100b2386601412d6c68a45;
-&a2e5fe5c92463618e3ac3eb6184a6514c;
-&a3d1f4797b814d4d10c4b1cd0a2316e6e;
-&a68acc0f447018aa08e92e1d6480e95fb;
-&ae603f65da6a3448e705b61733191f7e1;
-&a489b609c7baa2574b60744c9a166b350;
-&a87213ae4b598affb9e51c3ff77957951;
-&a89b1c9d29d8ea8a842fbbbff731a4ccf;
-&aeec63d2941febda586e272ca0d7e09e9;
-&ae2ea4b53ce51be512488c507ba5c1a97;
-&a2a8b19d4177c255e54f833c3e9c12de4;
-&af5072b843b624620f72a1118678bb51c;
-&a219b5a6958a48155175d7f125e0225b6;
-&a4892c6c6a094e865579eaa9fa0a1e315;
-&a20ba3985f003711dfcd6ae4a8aed4da3;
-&a498a173a5431d9ca778f08732ad009a3;
-&aa34b60fddd5a0bc48a0e0bdb88c05f5e;
-&af72c46e1f46388131554d782c87bdca6;
-&a56ca039cf45f00657429ca5b3ffdba4d;
-&aad227216b9d9295f4e5f8bd814752253;
-&a81fd5d7c924a096b87772397a39e4120;
-&ac98a73fed750316df035079d993cb1bb;
-&a5cfe9eeac1c4924f6a0caf3e1840568d;
-&ad14407366297f5e3bf8f6ffdcca387f7;
-&a51500db596c6a52603289ec898acc619;
-&aeaa1b542fe025ff3036e68a9da64527d;
-&ac3468da1f742c3072a382a126c9cfd90;
-&acf22d1bd8ee068dd275bed4ba7de0bb0;
-&aaf23de4d23842978c02d8fc01d0f8d89;
-&a1bb421658889ced3f6956d6d223af831;
-&a041cc2a85cc205a5280ff2cae0565aad;
-&ab9bfb86cd1cf6ba152f3c449acb53388;
-&ac5190b237eb80bce61bbb4731ebceaee;
-&a54eab5301da6f8ad94a0fc666a534f62;
-&aa76196c36e5195482e23ee95909d6a4c;
-&a02e375d7ce5589ce592ef3e186e8c6a5;
-&ab4ef5778ac13a477d0131b5d8dade1e4;
-&a76e1e372415f1013b0f4fd861c56f2ea;
-&ad08ce8e4fb40cfb3416c522ca5738730;
-&ac2cf40da1bec1c1f630828ed99d9fa7c;
-&a235f867faca505720e2e2fc0dc7523ee;
-&a5acb91e6d8e981bd43ac949272ce5fc1;
-&a0c437c94f4c9554d2eadc1299bc201c6;
-&a34b064123c25ed2a3df8772bc9148fa4;
-&a27489d7d314a41da10ff2ea221dc99bd;
-&a4a70061acbb347c0c6dbc7efc58a825b;
-&a050f686ed9bf3b9bbaeafa85839f88ea;
-&a6907d352bc8acb64f7672236214e003a;
-&ab7d38187b4f79ff0529d4c4c08b1d633;
-&a600b90a016f69bf4507022af617c8112;
-&a130a6a07303e6d40c88cc13f0df4f677;
-&a47f33d823a99a5b6ba0700bd44f2eedb;
-&ad090a8d9058532d5b76d3c76f0927647;
-&ac086f90347e9bff367792faa5b55509c;
-&a80d3837625985b4ea64c9fb8d21a2154;
-&a00aa26c59c877bc3fe918913a5da59df;
-&a7b1fc3f4b6f003df1d6b163f86ac2cc3;
-&ae4939978b945c2ba1d557b03cae30f84;
-&a290d00bd7c190f11aaa874430258d909;
-&ac1eea02afda4611561e359db55539ef3;
-&a5471ee2b25863bf6a2f32aa99bf0b1c8;
-&a56bbf2b805d1f7e17247cef64ba19333;
-&a37b6cebea1cde28601d71ea61001135f;
-&ab1ff3a3177d5412fce2d774a0cbb8c04;
-&ad4faf7dd15d7fd892712492de869c180;
-&a4a3dadddb6771053aa2c974bfa0c7b4a;
-&acdd93d2eb52543e9e5e06a19b2be5300;
-&a3322b2e8d12982e95f7abd7c07be5d83;
-&a405effc0095937f90e8796ab83a45b38;
-&ae537f60631062b3ad18ef244696dd073;
-&ab70a5bb921a249a9b2de0cc6b84dfcac;
-&a5eb03112f6aff7cf39f302d26b66f51d;
-&a9c1d71942abd1f1624fcfb3e40024f17;
-&ae4765bc27b678fde77e1a1e12d0312e1;
-&acd281019889eb8f2a87aa9bbfdfff93e;
-&a24442538c82a64f05197b0685b94062e;
-&adebab30e287f1744d68510915dd3dca3;
-&af192b03d06b90eb3dfd41194c886a010;
-&a8b754f3c797b791b0773a17091b92d47;
-&a4409d7ece46667d2c6c236a19699a2db;
-&aae7674d788c35e75f2a52af92dc855bc;
-&a7022b9d1c7c194f27b1dd6bc4e093697;
-&aef8e0226f6126afb2453e659221e7330;
-&aecbf6dfa1f6fa4c17585ac7e4eff69ef;
-&a2d885644b44b3b9676bb9522b2302d9e;
-&acc65fd8696943e1a4b7a1515adfac26d;
-&aeae065e98e5caf4232a0aecc3a78dae6;
-&a4ca7eb2183d94674b01f6b4d20a0a8f3;
-&a2e2ff138201e7a3c659cc2e16a226ea5;
-&a418de0bebfad1312e130535833127f08;
-&a96429758f8b959e506c7a66d5b360b54;
-&a917d366f9f46037f6a8e01126615b102;
-&a772a38fab08d7eabf51280d2ceb5d8d9;
-&aa9a5966969f01fa9d4edd7ff3423f006;
-&a91870007b51d3fd0800610d83a035fde;
-&a816b52645e1bf16373e1a72ea585a009;
-&af5fb964c532696b13e8a01d8f16fe052;
-&a0276d0be96a5fa3418c6a444c4b85442;
-&af86865824018a287588e17662223dcaa;
-&a4d7ecaad3186ac096d933689e251a1c2;
-&a44f0c49020c51a70c39d3853e515495d;
-&afcfb3d20fc86ed90b62e99fbf0ca8fd0;
-&a5585324c3dd5301043788660ce0f36ca;
-&a69a13bf7bf2c2d1704ddebfff33c94be;
-&ab1453252bafa29241202516166a9f783;
-&a6db0813748b2ce47693ca82e8208bbb8;
-&a7d6411a5dd16d795cf44bbe48c3289ad;
-&a15e621608a3503fb64669da1d9ca8619;
-&a7c72c8a8d7d554e521e83060089815fa;
-&a7c8bf8293a571fb2d6d94dc53959266a;
-&ab54c5530e341558ddfc71ec8ffb45aac;
-&a9b8b0d208fe7a2581097650c4eed31bf;
-&a9fa8430a1f63fbea843dbadf6aa070ab;
-&a9114be05b5cf59a0cffc8921b4d5f918;
-&a9b1d2e56d8d2907f6b9fb0f20f641573;
-&a8f8cb27d2a1e48303a9597f4e60e731b;
-&a050b38bceab9f2dd907cbbb0d14ab2f4;
-&a716d878bc9e3e1fb19a5357ef70823f7;
-&a6afb5f3f3514b7e47d13299e5064d0af;
-&aa8df37d359b12284be2e59d98627db73;
-&a111a8fca523b8646d1eb526a08cb5f10;
-&a8c6457516ccc6e7306473da4a6b17fd9;
-&a55b3b05f765c3883176f3139680ee4c0;
-&a941c0f7793607300f531db0534ec3698;
-&a7f91887a7293318872b7170cf01404c3;
-&abaa1ff6608a326ef22ef237cdf7dc0c1;
-&ab1b710cbacc3b7e1934f3ee160f6f21e;
-&a92ee012c477116f5f712c772e9cf4642;
-&a90aa1e8c11381cf0903d47492fe76003;
-&a19e3effbd0be032c384f4d29f088b26b;
-&a962cc0afc86fe9cfb3c725b2fb3fc8a7;
-&a23b2c788dac918bb541cee278c217004;
-&a375c8e3fce488c88fd2ad58e421cb109;
-&a05ea7008eb727c478f18a19acf34e221;
-&a9058a43e855325dd2da653945e7c5317;
-&ab55327a4128934be29626f54b82503e3;
-&a18ff41a908bdd56dea489618073337b1;
-&a92170f9f580f031accbbfc82dd265808;
-&a80926c0c0f8f3797be07e7275c8dcdb5;
-&a72cacbd2a95ba7e1c27d8220b58a1681;
-&a625e1803c72496b56195689f9388f40e;
-&a1cdc594306227014fb9570da9fdfaba5;
-&aaa714a94f0c1e251775fd03f088f3589;
-&af64d9784de8ecdcce28f1963d081aa2a;
-&a76a6fdb476060a229f6bb52e29d99667;
-&a984843fd00f52de0c91d72a2f2d35c60;
-&aa68766b620d78caaa210ddf54e4740c6;
-&a9498b8e51ebd5d30b14e4ae51f11a0e4;
-&a414cd2bf4fbb0240eb4cb3cc3193e8a5;
-&a92393e692247c0be55c2903ed953eb1f;
-&ae56eae8fd9fe4b5607eb687d41a62a8d;
-&a2613023045f6fa97a511ae290196314e;
-&aa402b99039e77ec462ad76fb8b80b145;
-&ab8d6a07007057c840f1b7afc44a04a38;
-&a71e0df8a7f16e193b7907129844a566b;
-&a61f5fce0a9ccf631897caf0b1580cb79;
-&a98e791bec81dfb22d09ccc4e1cebf498;
-&a8169e81c662c3c6f99fcfd31a716f003;
-&a61486111f2c5646c41de7852a40890d3;
-&a9ba6cffd73212e01a5a1cf48c370f31b;
-&a5ff4fb227aad23a52510b08738d06635;
-&a624b692de7106f79b52675e6f6e864db;
-&ab5ec2471f2a87567d2eda164da9cfc88;
-&a7f2f6a5c9d5ae84e00a33bc655680cbc;
-&a86c828962a88c80762ba774eb4689015;
-&a1ec494594cb2a65f69a4c305135a03dc;
-&a3024e7b1d5ec82a1746c1bb317b05bdd;
-&ae56b79980853d5c39cda79745ad43e1c;
-&afb072dbcb7e8025a801eb32f37a69dfb;
-&a9cce784055276e298cf721d8e269c31c;
-&ad84d3dcc40317a06780d4e68cbec8db0;
-&a522ad212c78230cdbad7a4a0d8daaadd;
-&ad0a91e7320d3da715c8e58990f5397a4;
+&a231328952124a7e187905e71aaf9cee0;
+&acc27042e738d175d1131be40ac8443e4;
+&a00c7c9f2a0021ff13869dce3b90df38c;
+&a2801dc954ec6ac2e1c314367aab7316b;
+&aa86636858e7127f17b93747fc8f3ec30;
+&a2804cc9a113729444d60d8cf3c14b554;
+&a78af20f681c48f8ec298b379b34418b7;
+&af1b518d74e5b9c0251ecb1df257eb407;
+&af8a337c857d4b373e49c0032acb1370f;
+&a8db037e6c34a1ac0f7db27577e08e15d;
+&a31f48c823b3b36a8c44e96ff54eaf66a;
+&a4965260600d5ae3055dc940551b4155a;
+&a203e8f0f36fcdb6d7dab204312a41134;
+&a33562ce8ee2b64f5e49f771f94e64714;
+&a2ead104a959d0030deacd8bfd726d641;
+&affed76d132b047f7e7dd7feaf7460b96;
+&a9a73fbe4c732d8d281a15b9c56b66cd7;
+&af063a7c3d52b3fc249eccfea5477233a;
+&a6b85a8141239aa12da5fd722e12764c5;
+&ac13ce08d83a0b050bbcd34097be69474;
+&a3ac1d95c0377fbd5021c9ab3878d3381;
+&a8bfbf0158cec14ad1852c16a1bcd1a9f;
+&aad687051b3ff18c103250462607b8bfe;
+&ae12b60324a0fd39a6eaeaa29154462d3;
+&a952ffa1c6ec05774d717ea1a51c966c7;
+&a63809fd4817619e419316a6fb51f2478;
+&a67189797ee7307d2f12d2d9db1429d16;
+&a6f811f8e27e331fa279fc0462a6dd852;
+&af57064694f5b9424a2fb945bab08663a;
+&a788630ff50c6129a3217a8b029fdb706;
+&ad67eb98c7a334e2ccd2584c52d1f7490;
+&a9aaa53086cfad7fff7a9568a895c584e;
+&a80fd0493bf42ae683bb78ef95ecc8ff1;
+&a1dc032779f7ba8e8f69e8f79dfb144d5;
+&a5bf1548e6f5419396992c7e5fee10e44;
+&a675cd787aff166461d9e9da55d591875;
+&adc56a73851265426ed0c3db40f3a0d2e;
+&a3d40cac540363daecb58818938d2b1d3;
+&ad2840257a4ded4da25428645e8a8fd22;
+&abaaa2a634a57347cfaeb3f75cc42b298;
+&ae8d01defeace3e366cfdce71da71d5e2;
+&a76e2baa7f20cd4d2b517c7f65f4b0a87;
+&a438b318f3a65f8e10cb292c16ee48d3d;
+&a012dc78292d46d1a6bfdd411607796ae;
+&a4c9381ac38659e2e9ccdf89e9aec08f9;
+&a732f6e560fa62dcfe2137f94ce0b812b;
+&a8e9030fad0ea16388695b20a07e04334;
+&a3ffbb42a185eaf6b62029b6efc883d6b;
+&ac93a3534190eae2db767de3935ad4fbc;
+&afe6460b06ca50c9c2d156ea6806d2ed9;
+&a52aa309fac8ef71cd8d143ac51969fe0;
+&aa0ecb21a4fba74cd96dd91d64d4f13ef;
+&a54ce5c2d68eb85b370486a8657432e59;
+&ae7e31ef8153e0b43af5b7d3b54f281b8;
+&a0d95063280ebe0c559bd51e94d6809cb;
+&a528ea74a7c6d6e7453f0a50c2b96a9ee;
+&ae0c094a4d283763517f2a9d8dc2d47dd;
+&a61dce7ba646ca92aaf5a1ba090aa25e4;
+&ad146f651e2b3ae0f2c4548c9d31b9324;
+&a093a9f733664f253ef62c57cbfd1f345;
+&ad9f3946f61509aa68a6555cc8e1e89c4;
+&a0b5dd6bfc7c995741ff59cb1f2e6bd9d;
+&a6f9f6be023cda42def4540ebe4a826ad;
+&ab3a31ebfc4f38ef5c568256700871cf9;
+&aaadfeefbe7128b3e19dfcf58d9259fba;
+&a73e8c044770a7cfd905f857689a6baa1;
+&a94e89cc06baa492675fb0ba33b84c454;
+&a19950da21e14157b78311a84cf566c31;
+&a997024f7f60a0e9b5b06fb25b4549196;
+&a60063fcaf779858435eab52d0438f7c0;
+&a5b1b81f5a27ba264b58d0ede7bf40d6e;
+&aaa8fd7d64f02100f0ff4b9f5a601b502;
+&a6c84bcba9eda7daf35794f2c2b1cfc36;
+&a5a10dacc8f7724140837e716eefea546;
+&a241d399410079c666c88bab68b4bd8b6;
+&a6091479f1738a3f05872855ff81f767e;
+&a79d0e19a419a4da0e9852a883c56e875;
+&acbf561fbe774483d5bdd6bb94f356c92;
+&a829161f2b17c647cab27ce7e4e177861;
+&a09f64c6e5d7a6e94067ecb6f99796457;
+&a277e25e2845fbbffbb98cb9bd813d43e;
+&a350fe0538e119f50421b72fb0177d862;
+&a89a8d615b106b54285bf3493164dde99;
+&a5d806f19e64dff92d1430af2e3d36434;
+&a93018e4b205ad1077ed39b70108ab6f5;
+&a564da052a4377e3262d3e2eaaff74169;
+&a55af75fd2a9b6cd5cd41835b0a2cc3b9;
+&af8c65bd6904096611c2566ec57c5b032;
+&a6fd54fa41c0d83b890ecda9094cd757f;
+&a9a5ec7990aa1e0ee187582dfea2e2f18;
+&a6c98b32822a438724a01bbbc3c6e8972;
+&a414728f3a3bc742adaead017680e9eb1;
+&a2992435e7a3da65808422b5922e44afd;
+&a056e2f09f5221e8999a0fea1c1fa878d;
+&a9142e379fc897ce07ddb4601b5f6eff9;
+&adc184a6cbbaa2bb5ce1233a789ac1f35;
+&a05f89038eb00b07e70e0873d8d1dfdbd;
+&a2fb2ab4d09d36ef1d84d3666c77ea926;
+&a3d73ca698d63b8e1aca3d442d62d67c8;
+&a17c1049c0e838c40c3d0c6330a1ed18e;
+&a9f42719de3232f6757f8f9645f04d2ba;
+&aa2dde2bdf03f823c2c8bcbe7c32ac6f5;
+&a1341fabc85cc66d9215f09a3b3389f21;
+&a9582da81a2996f4949f3a56504ac7af0;
+&af06621ea64b7432870e0c9de816a7a3f;
+&aedaf12b58709e4d66d9594c045e7fab9;
+&a076a06248e94759c2531feb6af82b4b2;
+&a550cb394018ff7036f3bf7ed85cd894a;
+&aadd3778bbb3c69186062e83df88617b6;
+&ae880c6aad471ddeadec92a73990a8916;
+&a3a1de36d214f8b24968c347990a780ca;
+&afd0accae740fccac83b6e58da7ad7f67;
+&aaff1fbd30d203394a0065360948cb552;
+&a64409832c5b89c298638be3ae481e2db;
+&a94b0fd913cff757ba932421487806ce2;
+&a501538e66b60a9dad666d8feebebc808;
+&a2cd55936714d73ab7cfc5b191e1ab310;
+&a5100d9ea14ecae777adf29449f8326bd;
+&a5d96b63e9d96e401c886dc2e59f352ae;
+&a7eb314d0aac7fe50a8b374d1fe09224a;
+&a5f1fdcf4bd80a0fdc97b1a66dc3d6126;
+&aa6381ef62e04401a281532a2b26866e4;
+&ab54549e25f72917f5984976326446806;
+&aad2ae34d6eb1330043839076bfe50370;
+&a2cb9870e7f3797bd8079af0d6bd72c2a;
+&a6f84b9f7d14410ce7b79c7e06629063c;
+&ab20a31499c13238dfad5e6a9a47494a8;
+&af78d47b6f1d4f40097f16df906159928;
+&a39a1a3343fe803f4afaf048b8d1570f3;
+&a0d9a41d49a4663bd5ae6e17bce7f3f9d;
+&ae90b90188af214c9b4bfbfd5186a57e3;
+&ab8ccec6c3405c19a470f1f3ca558ad07;
+&a454451daa892c02d56805334a51be93f;
+&ac1059f65770cbb8f7e8f63040d89272e;
+&a66543787f73f1ce1e7be63649b30a3c7;
+&acc1420fa4419b0f270ad3f8d342a3462;
+&a61595e565a64e6b77b85a8028a66eea6;
+&a995c78b83fbbea551450e7012f13797f;
+&a0442ccd02553bee97fde66f2838895ba;
+&a87c50c8b5be2390300fbfe46bb1ca120;
+&a02d1bdbd42659a3e4019d0498b14f321;
+&a9d6134bc5259cb5aeb088a6de56a1ec1;
+&aa37bf7c43823e017babd5e030e712970;
+&a9781f4c56bafacf94214fc66102348a2;
+&a169ef193b097a09b6d3ffec52f5f1485;
+&acc6ca2c4223c6eb2605224fd487187d2;
+&a29996fb75db3d782680d4ca3f521df92;
+&afd9713fe61540255e892066b5137e59d;
+&aa980f3c9624ae005414c12d7a877509e;
+&a7d2647c034f43a9251e2db288609a1b7;
+&a882da254da001f466eb31bbd41361a56;
+&a9bbded342cd4ef28c778daaa3422204c;
+&a19ce5d9910772e73e9e89012e50e7b00;
+&a345e02cd34c617dbd3421a2105685535;
+&a6801e6f009157396cae1b490394153e1;
+&aaa07642adb4af69e9b9b0e253ee2e09e;
+&a822b7b0a550b48a6c61f5d82f34fb2a6;
+&a0fb1810de5f83ec9ef3044ef50bea460;
+&a3be9e2c9b768acd0dd7364298b0bfee5;
+&a29e745c3794d5108d4133e8779cc61f7;
+&ae7f0ecf1810506f8d5417e97c2d11615;
+&ad59b2b322970b02a5fb9d524a71f7beb;
+&af8807cd3a5d1b02d4a288e796360fe2a;
+&a29e9c3d00fcd3169bd8354488b4977cb;
+&ad7cebbbaa3e2ced9e0c9182662c86b8a;
+&a6fbe2bc6ace27b1a7b3efaae322ab6dc;
+&ac5914c0be89a4c4439097765c0e7cecc;
+&a6da361fad125fe561580436a66d9d7bc;
+&ad2dfb1b46cc492f8d323e1b72dc22728;
+&ab2e4570e0024f556a50f7fe8da8ba151;
+&a04ef233b467060d4578b43b8971f38a3;
+&ac097cbdcb4b28badcff3616e968aa3f7;
+&a6352349298514ffd575c2367e13c14b3;
+&a9ab8a24e5b3bc5753cc3cb6cb6de74b8;
+&a299d9f2b3a06d39e69e093804117f40f;
+&a712e3325216084f0ff29f772a41abce2;
+&a4ce9f761027a046b75fe3e665393082f;
+&a06bd86308806c0555e5fd4bf92e2b769;
+&ae3cd6a4ac731b860300da199c84af7a9;
+&a492bcb2ea4cbe2a4a1f7c0a6d0054c29;
+&acfde8a4181328405e0f648d4aa9b843b;
+&ab3cbb2aaaf730a032674d18bc031731a;
+&a877d0d12418f2bbc520a5d1403d62a32;
+&af5fec193153f2dad9515f9b81d500410;
+&a0c7f7373d0deae4317b309d407e54ed0;
+&a4298bff4e637e7043203de25a4709e86;
+&a82677926514040027d5aeb5f81dc9208;
+&aa6b76788e36e0d6d7d2c1ec5d1604798;
+&aea7524fc34de97fc745d01ae564677a1;
+&a10a36960bde6b0639f4f358216f704cf;
+&a5feba38524659afdbe4015b645b45f4e;
+&a862e51cacd34ba79921d6ba8fadc2e3d;
+&ab3f2bf2ab34afc8e14ff23ada59fb889;
+&ad5fcb6a854ea4ab1a826c2cfe506037e;
+&ad6371d5f083f4ac4fd57fa369e3cce7f;
+&a050855b5f4f81d6e0c1778748ef21573;
+&acfaa379418f785d6abf7e7745da20005;
+&ab64c40cd49111b8db8a276e394939be8;
+&a6d63448e238679b1ffcf82bb12f3ab56;
+&a22391101c208e4851f12b2d38b1c940b;
+&adbd99bd46c01b285deaa3bcc1d9c6c42;
+&a55d26e66ea1393dcf99b7df5ba827b79;
+&a4d46b917ce6f500dce168ee18a1d17e6;
+&a1456cb0354e92a694fa9311ee5362daf;
+&af974230baefb26fbc56264ee4ddd9e72;
+&a74b148e7e471bd9f170cd4dc3087d2c9;
+&a243b79cdb976d4f432450ea744ca236c;
+&a9187ccad1c55b5cd1a5a900b17f2104b;
+&a805a0ed4cae04e01f29ecf5f82345622;
+&a6e3552f90470c430b16dca28da599068;
+&aff0a00518280d05c9d58a7de46b1b160;
+&a5f191b2f9a255115bd43ce5e8c9dfe46;
+&ab455e53fbe01264634cd4b2a4eb4c907;
+&af62b68dd386718f8d27cb4d8364b8335;
+&ad88190c86ecf59da91f5e21feb3a23c1;
+&a735fd0a0700e104dbe5abbcd22ab616d;
+&a378bace2a9b27a9198f9ffc3ba4efcb2;
+&a64dae20703f14187621c3e22fca1ebe9;
+&ac34fae293643ed52873e880dddf91bc1;
+&a97101bd7eb46f1029e6ea2a054d405ac;
+&aab35d1b77962f2054fd115ad6f8eb120;
+&a1d535975c3fb7e7d8a0f9658e1c0f6c0;
+&a091c9c305748e84d41eca16f78e2995f;
+&a41d68bfcb502a6ea6c94d0fdc154323b;
+&aee101979a880a08e0a3c6cdbd958bdf8;
+&a08e5aa34c91e6ebaba8fc63e3af9fe31;
+&a181e55fa472ec1667172b73625f1b776;
+&a4a8f4d8bf9f98af1fc99ba9328aa4a50;
+&a812d9c22a396a5551693bb4d6dcae5b8;
+&af95666e924be0e4cd14c6415f124f7d8;
+&ab4413930d155521ee36e3b7a19400809;
+&a07861a28f3bed2170e83949b6e2c3809;
+&a99676709afd29b9c0701a4ca0e97365e;
+&ac4b6feabfcffe4748eea06cf81d6c28b;
+&a9eb5dbeb1370f1a1f23b414438b423b7;
+&a61b6ccda9c51a7fb92674a98fd9f358a;
</part>
</book>
diff --git a/help/en_US/ncauer.xml b/help/en_US/ncauer.xml
new file mode 100644
index 0000000..a9395af
--- /dev/null
+++ b/help/en_US/ncauer.xml
@@ -0,0 +1,71 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from ncauer.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="ncauer" 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>ncauer</refname>
+ <refpurpose>Analog prototype for Cauer filter.</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ [Zz, Zp, Zg] = ncauer(Rp, Rs, n)
+ [Zz, Zp] = ncauer(Rp, Rs, n)
+ Zz = ncauer(Rp, Rs, n)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>n:</term>
+ <listitem><para> Filter Order</para></listitem></varlistentry>
+ <varlistentry><term>Rp:</term>
+ <listitem><para> Peak-to-peak passband ripple</para></listitem></varlistentry>
+ <varlistentry><term>Rs:</term>
+ <listitem><para> Stopband attenuation</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+This is an Octave function.
+It designs an analog prototype for Cauer filter of nth order, with a Peak-to-peak passband ripple of Rp and a stopband attenuation of Rs.
+</para>
+</refsection>
+
+<refsection>
+ <title>Examples</title>
+ <programlisting role="example"><![CDATA[
+n = 5;
+Rp = 5;
+Rs = 5;
+[Zz, Zp, Zg] = ncauer(Rp, Rs, n)
+Zz =
+
+0.0000 + 2.5546i 0.0000 + 1.6835i -0.0000 - 2.5546i -0.0000 - 1.6835i
+
+Zp =
+
+-0.10199 + 0.64039i -0.03168 + 0.96777i -0.10199 - 0.64039i -0.03168 - 0.96777i -0.14368 + 0.00000i
+
+Zg = 0.0030628
+ ]]></programlisting>
+</refsection>
+</refentry>
diff --git a/help/en_US/pei_tseng_notch.xml b/help/en_US/pei_tseng_notch.xml
new file mode 100644
index 0000000..a2b1f37
--- /dev/null
+++ b/help/en_US/pei_tseng_notch.xml
@@ -0,0 +1,66 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from pei_tseng_notch.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="pei_tseng_notch" 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>pei_tseng_notch</refname>
+ <refpurpose></refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ [b, a] = pei_tseng_notch (frequencies, bandwidths)
+ b = pei_tseng_notch (frequencies, bandwidths)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>frequencies:</term>
+ <listitem><para> filter frequencies</para></listitem></varlistentry>
+ <varlistentry><term>bandwidths:</term>
+ <listitem><para> bandwidths to be used with filter</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+This is an Octave function.
+It return coefficients for an IIR notch-filter with one or more filter frequencies and according bandwidths. The filter is based on a all pass filter that performs phasereversal at filter frequencies.
+This leads to removal of those frequencies of the original and phase-distorted signal.
+</para>
+</refsection>
+
+<refsection>
+ <title>Examples</title>
+ <programlisting role="example"><![CDATA[
+sf = 800; sf2 = sf/2;
+data=[[1;zeros(sf-1,1)],sinetone(49,sf,1,1),sinetone(50,sf,1,1),sinetone(51,sf,1,1)];
+[b,a]=pei_tseng_notch ( 50 / sf2, 2/sf2 )
+b =
+
+0.99213 -1.83322 0.99213
+
+a =
+
+1.00000 -1.83322 0.98426
+ ]]></programlisting>
+</refsection>
+</refentry>
diff --git a/help/en_US/rceps.xml b/help/en_US/rceps.xml
new file mode 100644
index 0000000..fbf1ce8
--- /dev/null
+++ b/help/en_US/rceps.xml
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from rceps.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="rceps" 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>rceps</refname>
+ <refpurpose>Produce the cepstrum of the signal x, and if desired, the minimum phase reconstruction of the signal x.</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ [y, xm] = rceps(x)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>x:</term>
+ <listitem><para> real or complex vector input</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Examples</title>
+ <programlisting role="example"><![CDATA[
+f0 = 70; Fs = 10000; # 100 Hz fundamental, 10kHz sampling rate
+a = poly (0.985 * exp (1i*pi*[0.1, -0.1, 0.3, -0.3])); # two formants
+s = 0.005 * randn (1024, 1); # Noise excitation signal
+s(1:Fs/f0:length(s)) = 1; # Impulse glottal wave
+x = filter (1, a, s); # Speech signal in x
+[y, xm] = rceps (x .* hanning (1024)); # cepstrum and min phase reconstruction
+ ]]></programlisting>
+</refsection>
+</refentry>
diff --git a/help/en_US/remez1.xml b/help/en_US/remez1.xml
new file mode 100644
index 0000000..0336490
--- /dev/null
+++ b/help/en_US/remez1.xml
@@ -0,0 +1,58 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from remez1.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="remez1" 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>remez1</refname>
+ <refpurpose>Parks-McClellan optimal FIR filter design</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ b = remez1 (n, f, a)
+ b = remez1 (n, f, a, w)
+ b = remez1 (n, f, a, w, ftype)
+ b = remez1 (n, f, a, w, ftype, griddensity)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>n:</term>
+ <listitem><para> gives the number of taps in the returned filter</para></listitem></varlistentry>
+ <varlistentry><term>f:</term>
+ <listitem><para>gives frequency at the band edges [b1 e1 b2 e2 b3 e3 …]</para></listitem></varlistentry>
+ <varlistentry><term>a:</term>
+ <listitem><para>gives amplitude at the band edges [a(b1) a(e1) a(b2) a(e2) …]</para></listitem></varlistentry>
+ <varlistentry><term>w:</term>
+ <listitem><para>gives weighting applied to each band</para></listitem></varlistentry>
+ <varlistentry><term>ftype:</term>
+ <listitem><para>is "bandpass", "hilbert" or "differentiator"</para></listitem></varlistentry>
+ <varlistentry><term>griddensity:</term>
+ <listitem><para>determines how accurately the filter will be constructed. The minimum value is 16, but higher numbers are slower to compute.</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+Frequency is in the range (0, 1), with 1 being the Nyquist frequency.
+</para>
+</refsection>
+</refentry>
diff --git a/help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS b/help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS
index 94d77de..8aaa253 100644
--- a/help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS
+++ b/help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS
Binary files differ
diff --git a/help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS.TAB b/help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS.TAB
index 69df842..b54d5ae 100644
--- a/help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS.TAB
+++ b/help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS.TAB
Binary files differ
diff --git a/help/en_US/scilab_en_US_help/JavaHelpSearch/OFFSETS b/help/en_US/scilab_en_US_help/JavaHelpSearch/OFFSETS
index d12a497..c9aea54 100644
--- a/help/en_US/scilab_en_US_help/JavaHelpSearch/OFFSETS
+++ b/help/en_US/scilab_en_US_help/JavaHelpSearch/OFFSETS
Binary files differ
diff --git a/help/en_US/scilab_en_US_help/JavaHelpSearch/POSITIONS b/help/en_US/scilab_en_US_help/JavaHelpSearch/POSITIONS
index 695869a..8ed5123 100644
--- a/help/en_US/scilab_en_US_help/JavaHelpSearch/POSITIONS
+++ b/help/en_US/scilab_en_US_help/JavaHelpSearch/POSITIONS
Binary files differ
diff --git a/help/en_US/scilab_en_US_help/JavaHelpSearch/SCHEMA b/help/en_US/scilab_en_US_help/JavaHelpSearch/SCHEMA
index 677736a..c854eb8 100644
--- a/help/en_US/scilab_en_US_help/JavaHelpSearch/SCHEMA
+++ b/help/en_US/scilab_en_US_help/JavaHelpSearch/SCHEMA
@@ -1,2 +1,2 @@
JavaSearch 1.0
-TMAP bs=2048 rt=1 fl=-1 id1=1967 id2=1
+TMAP bs=2048 rt=1 fl=-1 id1=2314 id2=1
diff --git a/help/en_US/scilab_en_US_help/JavaHelpSearch/TMAP b/help/en_US/scilab_en_US_help/JavaHelpSearch/TMAP
index c563e48..ee969b9 100644
--- a/help/en_US/scilab_en_US_help/JavaHelpSearch/TMAP
+++ b/help/en_US/scilab_en_US_help/JavaHelpSearch/TMAP
Binary files differ
diff --git a/help/en_US/scilab_en_US_help/jhelpmap.jhm b/help/en_US/scilab_en_US_help/jhelpmap.jhm
index 61a8d3f..6dfccf5 100644
--- a/help/en_US/scilab_en_US_help/jhelpmap.jhm
+++ b/help/en_US/scilab_en_US_help/jhelpmap.jhm
@@ -2,7 +2,7 @@
<!DOCTYPE map PUBLIC "-//Sun Microsystems Inc.//DTD JavaHelp Map Version 1.0//EN" "http://java.sun.com/products/javahelp/map_1_0.dtd">
<map version="1.0">
<mapID target="index" url="index.html"/>
-<mapID target="section_cc2bc01c47967d47fcf3507a91d572ba" url="section_cc2bc01c47967d47fcf3507a91d572ba.html"/>
+<mapID target="section_5118e822ecc2888aa80042108de4932e" url="section_5118e822ecc2888aa80042108de4932e.html"/>
<mapID target="ac2poly" url="ac2poly.html"/>
<mapID target="ac2rc" url="ac2rc.html"/>
<mapID target="arParEst" url="arParEst.html"/>
@@ -12,6 +12,7 @@
<mapID target="aryule" url="aryule.html"/>
<mapID target="barthannwin" url="barthannwin.html"/>
<mapID target="bartlett" url="bartlett.html"/>
+<mapID target="besselap" url="besselap.html"/>
<mapID target="besself" url="besself.html"/>
<mapID target="bitrevorder" url="bitrevorder.html"/>
<mapID target="blackman" url="blackman.html"/>
@@ -20,11 +21,16 @@
<mapID target="bohmanwin" url="bohmanwin.html"/>
<mapID target="boxcar" url="boxcar.html"/>
<mapID target="buffer" url="buffer.html"/>
+<mapID target="buttap" url="buttap.html"/>
<mapID target="butter" url="butter.html"/>
<mapID target="buttord" url="buttord.html"/>
+<mapID target="cceps" url="cceps.html"/>
<mapID target="cconv" url="cconv.html"/>
<mapID target="cell2sos" url="cell2sos.html"/>
+<mapID target="cheb" url="cheb.html"/>
+<mapID target="cheb1ap" url="cheb1ap.html"/>
<mapID target="cheb1ord" url="cheb1ord.html"/>
+<mapID target="cheb2ap" url="cheb2ap.html"/>
<mapID target="cheb2ord" url="cheb2ord.html"/>
<mapID target="chebwin" url="chebwin.html"/>
<mapID target="cheby1" url="cheby1.html"/>
@@ -35,8 +41,10 @@
<mapID target="cmorwavf" url="cmorwavf.html"/>
<mapID target="convmtx" url="convmtx.html"/>
<mapID target="corrmtx" url="corrmtx.html"/>
+<mapID target="cplxreal" url="cplxreal.html"/>
<mapID target="cummax" url="cummax.html"/>
<mapID target="cummin" url="cummin.html"/>
+<mapID target="czt" url="czt.html"/>
<mapID target="db" url="db.html"/>
<mapID target="db2pow" url="db2pow.html"/>
<mapID target="dctmtx" url="dctmtx.html"/>
@@ -44,13 +52,18 @@
<mapID target="dftmtx" url="dftmtx.html"/>
<mapID target="diric" url="diric.html"/>
<mapID target="downsample" url="downsample.html"/>
+<mapID target="dst1" url="dst1.html"/>
<mapID target="dutycycle" url="dutycycle.html"/>
<mapID target="ellip" url="ellip.html"/>
+<mapID target="ellipap" url="ellipap.html"/>
<mapID target="ellipord" url="ellipord.html"/>
<mapID target="enbw" url="enbw.html"/>
<mapID target="eqtflength" url="eqtflength.html"/>
<mapID target="falltime" url="falltime.html"/>
+<mapID target="fft" url="fft.html"/>
+<mapID target="fft2" url="fft2.html"/>
<mapID target="fftfilt" url="fftfilt.html"/>
+<mapID target="fht" url="fht.html"/>
<mapID target="filternorm" url="filternorm.html"/>
<mapID target="filtfilt" url="filtfilt.html"/>
<mapID target="filtic" url="filtic.html"/>
@@ -59,8 +72,10 @@
<mapID target="firtype" url="firtype.html"/>
<mapID target="flattopwin" url="flattopwin.html"/>
<mapID target="fracshift" url="fracshift.html"/>
+<mapID target="freqs" url="freqs.html"/>
<mapID target="fwhm" url="fwhm.html"/>
<mapID target="fwhmjlt" url="fwhmjlt.html"/>
+<mapID target="fwht" url="fwht.html"/>
<mapID target="gauspuls" url="gauspuls.html"/>
<mapID target="gaussdesign" url="gaussdesign.html"/>
<mapID target="gaussian" url="gaussian.html"/>
@@ -69,14 +84,25 @@
<mapID target="goertzel" url="goertzel.html"/>
<mapID target="grpdelay" url="grpdelay.html"/>
<mapID target="hann" url="hann.html"/>
+<mapID target="hanning" url="hanning.html"/>
<mapID target="helperHarmonicDistortionAmplifier" url="helperHarmonicDistortionAmplifier.html"/>
+<mapID target="hilbert1" url="hilbert1.html"/>
+<mapID target="hurst" url="hurst.html"/>
<mapID target="icceps" url="icceps.html"/>
+<mapID target="idct1" url="idct1.html"/>
+<mapID target="idct2" url="idct2.html"/>
+<mapID target="idst1" url="idst1.html"/>
+<mapID target="ifft" url="ifft.html"/>
+<mapID target="ifft2" url="ifft2.html"/>
+<mapID target="ifht" url="ifht.html"/>
+<mapID target="ifwht" url="ifwht.html"/>
<mapID target="iirlp2mb" url="iirlp2mb.html"/>
<mapID target="impinvar" url="impinvar.html"/>
<mapID target="impz" url="impz.html"/>
<mapID target="impzlength" url="impzlength.html"/>
<mapID target="interp" url="interp.html"/>
<mapID target="intfilt" url="intfilt.html"/>
+<mapID target="invfreq" url="invfreq.html"/>
<mapID target="invimpinvar" url="invimpinvar.html"/>
<mapID target="is2rc" url="is2rc.html"/>
<mapID target="isallpass" url="isallpass.html"/>
@@ -105,6 +131,7 @@
<mapID target="morlet" url="morlet.html"/>
<mapID target="movingrms" url="movingrms.html"/>
<mapID target="musicBase" url="musicBase.html"/>
+<mapID target="ncauer" url="ncauer.html"/>
<mapID target="nnls" url="nnls.html"/>
<mapID target="nuttallwin" url="nuttallwin.html"/>
<mapID target="parzenwin" url="parzenwin.html"/>
@@ -112,6 +139,7 @@
<mapID target="pchips" url="pchips.html"/>
<mapID target="peak2peak" url="peak2peak.html"/>
<mapID target="peak2rms" url="peak2rms.html"/>
+<mapID target="pei_tseng_notch" url="pei_tseng_notch.html"/>
<mapID target="peig" url="peig.html"/>
<mapID target="periodogram" url="periodogram.html"/>
<mapID target="phaseInputParseAs_ab" url="phaseInputParseAs_ab.html"/>
@@ -136,9 +164,11 @@
<mapID target="rc2is" url="rc2is.html"/>
<mapID target="rc2lar" url="rc2lar.html"/>
<mapID target="rc2poly" url="rc2poly.html"/>
+<mapID target="rceps" url="rceps.html"/>
<mapID target="rcosdesign" url="rcosdesign.html"/>
<mapID target="rectpuls" url="rectpuls.html"/>
<mapID target="rectwin" url="rectwin.html"/>
+<mapID target="remez1" url="remez1.html"/>
<mapID target="resample" url="resample.html"/>
<mapID target="residued" url="residued.html"/>
<mapID target="residuez" url="residuez.html"/>
@@ -157,6 +187,9 @@
<mapID target="sgolayfilt" url="sgolayfilt.html"/>
<mapID target="shanwavf" url="shanwavf.html"/>
<mapID target="shiftdata" url="shiftdata.html"/>
+<mapID target="sigmoid_train" url="sigmoid_train.html"/>
+<mapID target="sinetone" url="sinetone.html"/>
+<mapID target="sinewave" url="sinewave.html"/>
<mapID target="slewrate" url="slewrate.html"/>
<mapID target="sos2cell" url="sos2cell.html"/>
<mapID target="sos2ss" url="sos2ss.html"/>
@@ -165,11 +198,16 @@
<mapID target="sosbreak" url="sosbreak.html"/>
<mapID target="sosfilt" url="sosfilt.html"/>
<mapID target="specgram" url="specgram.html"/>
+<mapID target="spectral_adf" url="spectral_adf.html"/>
+<mapID target="spectral_xdf" url="spectral_xdf.html"/>
+<mapID target="spencer" url="spencer.html"/>
<mapID target="ss2sos" url="ss2sos.html"/>
<mapID target="statelevels" url="statelevels.html"/>
+<mapID target="stft" url="stft.html"/>
<mapID target="stmcb" url="stmcb.html"/>
<mapID target="strips" url="strips.html"/>
<mapID target="subspaceMethodsInputParser" url="subspaceMethodsInputParser.html"/>
+<mapID target="synthesis" url="synthesis.html"/>
<mapID target="tf2sos" url="tf2sos.html"/>
<mapID target="tf2zp" url="tf2zp.html"/>
<mapID target="tf2zpk" url="tf2zpk.html"/>
@@ -188,12 +226,17 @@
<mapID target="upsamplefill" url="upsamplefill.html"/>
<mapID target="var" url="var.html"/>
<mapID target="vco" url="vco.html"/>
+<mapID target="wconv" url="wconv.html"/>
<mapID target="welchwin" url="welchwin.html"/>
<mapID target="window" url="window.html"/>
<mapID target="wkeep" url="wkeep.html"/>
<mapID target="wrev" url="wrev.html"/>
<mapID target="xcorr2" url="xcorr2.html"/>
+<mapID target="xcov1" url="xcov1.html"/>
+<mapID target="yulewalker" url="yulewalker.html"/>
<mapID target="zerocrossing" url="zerocrossing.html"/>
<mapID target="zp2sos" url="zp2sos.html"/>
+<mapID target="zp2ss" url="zp2ss.html"/>
+<mapID target="zp2tf" url="zp2tf.html"/>
<mapID target="zplane" url="zplane.html"/>
</map> \ No newline at end of file
diff --git a/help/en_US/scilab_en_US_help/jhelptoc.xml b/help/en_US/scilab_en_US_help/jhelptoc.xml
index 91a8471..ca70a11 100644
--- a/help/en_US/scilab_en_US_help/jhelptoc.xml
+++ b/help/en_US/scilab_en_US_help/jhelptoc.xml
@@ -2,7 +2,7 @@
<!DOCTYPE toc PUBLIC "-//Sun Microsystems Inc.//DTD JavaHelp TOC Version 1.0//EN" "http://java.sun.com/products/javahelp/toc_1_0.dtd">
<toc version="1.0">
<tocitem target="index" text="FOSSEE Signal Processing Toolbox">
-<tocitem target="section_cc2bc01c47967d47fcf3507a91d572ba" text="FOSSEE Signal Processing Toolbox">
+<tocitem target="section_5118e822ecc2888aa80042108de4932e" text="FOSSEE Signal Processing Toolbox">
<tocitem target="ac2poly" text="ac2poly"/>
<tocitem target="ac2rc" text="ac2rc"/>
<tocitem target="arParEst" text="arParEst"/>
@@ -12,6 +12,7 @@
<tocitem target="aryule" text="aryule"/>
<tocitem target="barthannwin" text="barthannwin"/>
<tocitem target="bartlett" text="bartlett"/>
+<tocitem target="besselap" text="besselap"/>
<tocitem target="besself" text="besself"/>
<tocitem target="bitrevorder" text="bitrevorder"/>
<tocitem target="blackman" text="blackman"/>
@@ -20,11 +21,16 @@
<tocitem target="bohmanwin" text="bohmanwin"/>
<tocitem target="boxcar" text="boxcar"/>
<tocitem target="buffer" text="buffer"/>
+<tocitem target="buttap" text="buttap"/>
<tocitem target="butter" text="butter"/>
<tocitem target="buttord" text="buttord"/>
+<tocitem target="cceps" text="cceps"/>
<tocitem target="cconv" text="cconv"/>
<tocitem target="cell2sos" text="cell2sos"/>
+<tocitem target="cheb" text="cheb"/>
+<tocitem target="cheb1ap" text="cheb1ap"/>
<tocitem target="cheb1ord" text="cheb1ord"/>
+<tocitem target="cheb2ap" text="cheb2ap"/>
<tocitem target="cheb2ord" text="cheb2ord"/>
<tocitem target="chebwin" text="chebwin"/>
<tocitem target="cheby1" text="cheby1"/>
@@ -35,8 +41,10 @@
<tocitem target="cmorwavf" text="cmorwavf"/>
<tocitem target="convmtx" text="convmtx"/>
<tocitem target="corrmtx" text="corrmtx"/>
+<tocitem target="cplxreal" text="cplxreal"/>
<tocitem target="cummax" text="cummax"/>
<tocitem target="cummin" text="cummin"/>
+<tocitem target="czt" text="czt"/>
<tocitem target="db" text="db"/>
<tocitem target="db2pow" text="db2pow"/>
<tocitem target="dctmtx" text="dctmtx"/>
@@ -44,13 +52,18 @@
<tocitem target="dftmtx" text="dftmtx"/>
<tocitem target="diric" text="diric"/>
<tocitem target="downsample" text="downsample"/>
+<tocitem target="dst1" text="dst1"/>
<tocitem target="dutycycle" text="dutycycle"/>
<tocitem target="ellip" text="ellip"/>
+<tocitem target="ellipap" text="ellipap"/>
<tocitem target="ellipord" text="ellipord"/>
<tocitem target="enbw" text="enbw"/>
<tocitem target="eqtflength" text="eqtflength"/>
<tocitem target="falltime" text="falltime"/>
+<tocitem target="fft" text="fft"/>
+<tocitem target="fft2" text="fft2"/>
<tocitem target="fftfilt" text="fftfilt"/>
+<tocitem target="fht" text="fht"/>
<tocitem target="filternorm" text="filternorm"/>
<tocitem target="filtfilt" text="filtfilt"/>
<tocitem target="filtic" text="filtic"/>
@@ -59,8 +72,10 @@
<tocitem target="firtype" text="firtype"/>
<tocitem target="flattopwin" text="flattopwin"/>
<tocitem target="fracshift" text="fracshift"/>
+<tocitem target="freqs" text="freqs"/>
<tocitem target="fwhm" text="fwhm"/>
<tocitem target="fwhmjlt" text="fwhmjlt"/>
+<tocitem target="fwht" text="fwht"/>
<tocitem target="gauspuls" text="gauspuls"/>
<tocitem target="gaussdesign" text="gaussdesign"/>
<tocitem target="gaussian" text="gaussian"/>
@@ -69,14 +84,25 @@
<tocitem target="goertzel" text="goertzel"/>
<tocitem target="grpdelay" text="grpdelay"/>
<tocitem target="hann" text="hann"/>
+<tocitem target="hanning" text="hanning"/>
<tocitem target="helperHarmonicDistortionAmplifier" text="helperHarmonicDistortionAmplifier"/>
+<tocitem target="hilbert1" text="hilbert1"/>
+<tocitem target="hurst" text="hurst"/>
<tocitem target="icceps" text="icceps"/>
+<tocitem target="idct1" text="idct1"/>
+<tocitem target="idct2" text="idct2"/>
+<tocitem target="idst1" text="idst1"/>
+<tocitem target="ifft" text="ifft"/>
+<tocitem target="ifft2" text="ifft2"/>
+<tocitem target="ifht" text="ifht"/>
+<tocitem target="ifwht" text="ifwht"/>
<tocitem target="iirlp2mb" text="iirlp2mb"/>
<tocitem target="impinvar" text="impinvar"/>
<tocitem target="impz" text="impz"/>
<tocitem target="impzlength" text="impzlength"/>
<tocitem target="interp" text="interp"/>
<tocitem target="intfilt" text="intfilt"/>
+<tocitem target="invfreq" text="invfreq"/>
<tocitem target="invimpinvar" text="invimpinvar"/>
<tocitem target="is2rc" text="is2rc"/>
<tocitem target="isallpass" text="isallpass"/>
@@ -105,6 +131,7 @@
<tocitem target="morlet" text="morlet"/>
<tocitem target="movingrms" text="movingrms"/>
<tocitem target="musicBase" text="musicBase"/>
+<tocitem target="ncauer" text="ncauer"/>
<tocitem target="nnls" text="nnls"/>
<tocitem target="nuttallwin" text="nuttallwin"/>
<tocitem target="parzenwin" text="parzenwin"/>
@@ -112,6 +139,7 @@
<tocitem target="pchips" text="pchips"/>
<tocitem target="peak2peak" text="peak2peak"/>
<tocitem target="peak2rms" text="peak2rms"/>
+<tocitem target="pei_tseng_notch" text="pei_tseng_notch"/>
<tocitem target="peig" text="peig"/>
<tocitem target="periodogram" text="periodogram"/>
<tocitem target="phaseInputParseAs_ab" text="phaseInputParseAs_ab"/>
@@ -136,9 +164,11 @@
<tocitem target="rc2is" text="rc2is"/>
<tocitem target="rc2lar" text="rc2lar"/>
<tocitem target="rc2poly" text="rc2poly"/>
+<tocitem target="rceps" text="rceps"/>
<tocitem target="rcosdesign" text="rcosdesign"/>
<tocitem target="rectpuls" text="rectpuls"/>
<tocitem target="rectwin" text="rectwin"/>
+<tocitem target="remez1" text="remez1"/>
<tocitem target="resample" text="resample"/>
<tocitem target="residued" text="residued"/>
<tocitem target="residuez" text="residuez"/>
@@ -157,6 +187,9 @@
<tocitem target="sgolayfilt" text="sgolayfilt"/>
<tocitem target="shanwavf" text="shanwavf"/>
<tocitem target="shiftdata" text="shiftdata"/>
+<tocitem target="sigmoid_train" text="sigmoid_train"/>
+<tocitem target="sinetone" text="sinetone"/>
+<tocitem target="sinewave" text="sinewave"/>
<tocitem target="slewrate" text="slewrate"/>
<tocitem target="sos2cell" text="sos2cell"/>
<tocitem target="sos2ss" text="sos2ss"/>
@@ -165,11 +198,16 @@
<tocitem target="sosbreak" text="sosbreak"/>
<tocitem target="sosfilt" text="sosfilt"/>
<tocitem target="specgram" text="specgram"/>
+<tocitem target="spectral_adf" text="spectral_adf"/>
+<tocitem target="spectral_xdf" text="spectral_xdf"/>
+<tocitem target="spencer" text="spencer"/>
<tocitem target="ss2sos" text="ss2sos"/>
<tocitem target="statelevels" text="statelevels"/>
+<tocitem target="stft" text="stft"/>
<tocitem target="stmcb" text="stmcb"/>
<tocitem target="strips" text="strips"/>
<tocitem target="subspaceMethodsInputParser" text="subspaceMethodsInputParser"/>
+<tocitem target="synthesis" text="synthesis"/>
<tocitem target="tf2sos" text="tf2sos"/>
<tocitem target="tf2zp" text="tf2zp"/>
<tocitem target="tf2zpk" text="tf2zpk"/>
@@ -188,13 +226,18 @@
<tocitem target="upsamplefill" text="upsamplefill"/>
<tocitem target="var" text="var"/>
<tocitem target="vco" text="vco"/>
+<tocitem target="wconv" text="wconv"/>
<tocitem target="welchwin" text="welchwin"/>
<tocitem target="window" text="window"/>
<tocitem target="wkeep" text="wkeep"/>
<tocitem target="wrev" text="wrev"/>
<tocitem target="xcorr2" text="xcorr2"/>
+<tocitem target="xcov1" text="xcov1"/>
+<tocitem target="yulewalker" text="yulewalker"/>
<tocitem target="zerocrossing" text="zerocrossing"/>
<tocitem target="zp2sos" text="zp2sos"/>
+<tocitem target="zp2ss" text="zp2ss"/>
+<tocitem target="zp2tf" text="zp2tf"/>
<tocitem target="zplane" text="zplane"/>
</tocitem>
</tocitem>
diff --git a/help/en_US/sigmoid_train.xml b/help/en_US/sigmoid_train.xml
new file mode 100644
index 0000000..07a86b7
--- /dev/null
+++ b/help/en_US/sigmoid_train.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from sigmoid_train.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="sigmoid_train" 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>sigmoid_train</refname>
+ <refpurpose>funcprot(0);</refpurpose>
+ </refnamediv>
+
+</refentry>
diff --git a/help/en_US/sinetone.xml b/help/en_US/sinetone.xml
new file mode 100644
index 0000000..ce0e9f7
--- /dev/null
+++ b/help/en_US/sinetone.xml
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from sinetone.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="sinetone" 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>sinetone</refname>
+ <refpurpose>Return a sinetone of the input</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ y= sinetone(FREQ)
+ y= sinetone(FREQ, RATE)
+ y= sinetone(FREQ, RATE, SEC)
+ y= sinetone(FREQ, RATE, SEC, AMPL)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>FREQ:</term>
+ <listitem><para> frequency of sinetone</para></listitem></varlistentry>
+ <varlistentry><term>RATE:</term>
+ <listitem><para> Sampling rate</para></listitem></varlistentry>
+ <varlistentry><term>SEC:</term>
+ <listitem><para> Length in seconds</para></listitem></varlistentry>
+ <varlistentry><term>AMPL:</term>
+ <listitem><para> Amplitude</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+Return a sinetone of frequency FREQ with a length of SEC seconds atsampling rate RATE and with amplitude AMPL.The arguments FREQ and AMPL may be vectors of common size.The defaults are RATE = 8000, SEC = 1, and AMPL = 64.
+</para>
+</refsection>
+</refentry>
diff --git a/help/en_US/sinewave.xml b/help/en_US/sinewave.xml
new file mode 100644
index 0000000..bcc785d
--- /dev/null
+++ b/help/en_US/sinewave.xml
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from sinewave.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="sinewave" 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>sinewave</refname>
+ <refpurpose>Return an M-element vector with I-th element given by 'sin(2* pi *(I+D-1)/N).'</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ y= sinewave(M)
+ y= sinewave(M,N)
+ y= sinewave(M,N,D)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>M:</term>
+ <listitem><para> Input vector</para></listitem></varlistentry>
+ <varlistentry><term>N:</term>
+ <listitem><para> The default value for N is M</para></listitem></varlistentry>
+ <varlistentry><term>D:</term>
+ <listitem><para> The default value for D is 0</para></listitem></varlistentry>
+ <varlistentry><term>AMPL:</term>
+ <listitem><para> Amplitude</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+Return an M-element vector with I-th element given by 'sin(2* pi *(I+D-1)/N).'
+</para>
+</refsection>
+</refentry>
diff --git a/help/en_US/spectral_adf.xml b/help/en_US/spectral_adf.xml
new file mode 100644
index 0000000..164d3e0
--- /dev/null
+++ b/help/en_US/spectral_adf.xml
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from spectral_adf.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="spectral_adf" 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>spectral_adf</refname>
+ <refpurpose>Return the spectral density estimator given a vector of autocovariances C, window name WIN, and bandwidth, B.</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ spectral_adf(C)
+ spectral_adf(C, WIN)
+ spectral_adf(C, WIN, B)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>C:</term>
+ <listitem><para> Autocovariances</para></listitem></varlistentry>
+ <varlistentry><term>WIN:</term>
+ <listitem><para> Window names</para></listitem></varlistentry>
+ <varlistentry><term>B:</term>
+ <listitem><para> Bandwidth</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+Return the spectral density estimator given a vector ofautocovariances C, window name WIN, and bandwidth, B.
+The window name, e.g., "triangle" or "rectangle" is used to search for a function called 'WIN_lw'.
+If WIN is omitted, the triangle window is used.
+If B is omitted, '1 / sqrt (length (C))' is used.
+</para>
+</refsection>
+</refentry>
diff --git a/help/en_US/spectral_xdf.xml b/help/en_US/spectral_xdf.xml
new file mode 100644
index 0000000..04cc793
--- /dev/null
+++ b/help/en_US/spectral_xdf.xml
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from spectral_xdf.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="spectral_xdf" 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>spectral_xdf</refname>
+ <refpurpose>Return the spectral density estimator given a data vector X, window name WIN, and bandwidth, B.</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ spectral_xdf(X)
+ spectral_xdf(X, WIN)
+ spectral_xdf(X, WIN, B)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>X:</term>
+ <listitem><para> Data Vector</para></listitem></varlistentry>
+ <varlistentry><term>WIN:</term>
+ <listitem><para> Window names</para></listitem></varlistentry>
+ <varlistentry><term>B:</term>
+ <listitem><para> Bandwidth</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+Return the spectral density estimator given a data vector X, window name WIN, and bandwidth, B.
+The window name, e.g., "triangle" or "rectangle" is used to search for a function called 'WIN_lw'.
+If WIN is omitted, the triangle window is used.
+If B is omitted, '1 / sqrt (length (X))' is used.
+</para>
+</refsection>
+</refentry>
diff --git a/help/en_US/spencer.xml b/help/en_US/spencer.xml
new file mode 100644
index 0000000..66b1570
--- /dev/null
+++ b/help/en_US/spencer.xml
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from spencer.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="spencer" 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>spencer</refname>
+ <refpurpose>Return Spencer's 15 point moving average of each column of X.</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ spencer(X)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>X:</term>
+ <listitem><para> Real scalar or vector</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+Return Spencer's 15 point moving average of each column of X.
+</para>
+</refsection>
+</refentry>
diff --git a/help/en_US/stft.xml b/help/en_US/stft.xml
new file mode 100644
index 0000000..2449be3
--- /dev/null
+++ b/help/en_US/stft.xml
@@ -0,0 +1,84 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from stft.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="stft" 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>stft</refname>
+ <refpurpose>Compute the short-time Fourier transform of the vector X</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ Y = stft (X)
+ Y = stft (X, WIN_SIZE)
+ Y = stft (X, WIN_SIZE, INC)
+ Y = stft (X, WIN_SIZE, INC, NUM_COEF)
+ Y = stft (X, WIN_SIZE, INC, NUM_COEF, WIN_TYPE)
+ [Y,C] = stft (X)
+ [Y,C] = stft (X, WIN_SIZE)
+ [Y,C] = stft (X, WIN_SIZE, INC)
+ [Y,C] = stft (X, WIN_SIZE, INC, NUM_COEF)
+ [Y,C] = stft (X, WIN_SIZE, INC, NUM_COEF, WIN_TYPE)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>X:</term>
+ <listitem><para> Real scalar or vector</para></listitem></varlistentry>
+ <varlistentry><term>WIN_SIZE:</term>
+ <listitem><para> Size of the window used</para></listitem></varlistentry>
+ <varlistentry><term>INC:</term>
+ <listitem><para> Increment</para></listitem></varlistentry>
+ <varlistentry><term>WIN_TYPE:</term>
+ <listitem><para> Type of window</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+Compute the short-time Fourier transform of the vector X with NUM_COEF coefficients by applying a window of WIN_SIZE data points and an increment of INC points.
+ </para>
+ <para>
+Before computing the Fourier transform, one of the following windows is applied:
+ </para>
+ <para>
+"hanning" -&gt; win_type = 1
+ </para>
+ <para>
+"hamming" -&gt; win_type = 2
+ </para>
+ <para>
+"rectangle" -&gt; win_type = 3
+ </para>
+ <para>
+The window names can be passed as strings or by the WIN_TYPE number.
+ </para>
+ <para>
+The following defaults are used for unspecified arguments:WIN_SIZE= 80, INC = 24, NUM_COEF = 64, and WIN_TYPE = 1.
+ </para>
+ <para>
+Y = stft (X, ...)' returns the absolute values of the Fourier coefficients according to the NUM_COEF positive frequencies.
+ </para>
+ <para>
+'[Y, C] = stft (x, ...)' returns the entire STFT-matrix Y and a 3-element vector C containing the window size, increment, and window type, which is needed by the 'synthesis' function.
+</para>
+</refsection>
+</refentry>
diff --git a/help/en_US/synthesis.xml b/help/en_US/synthesis.xml
new file mode 100644
index 0000000..b1c1270
--- /dev/null
+++ b/help/en_US/synthesis.xml
@@ -0,0 +1,49 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from synthesis.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="synthesis" 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>synthesis</refname>
+ <refpurpose>Compute a signal from its short-time Fourier transform</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ X= synthesis(Y,C)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>Y:</term>
+ <listitem><para> Shirt-time fourier transform</para></listitem></varlistentry>
+ <varlistentry><term>C:</term>
+ <listitem><para> 3-element vector C specifying window size, increment, window type.</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+Compute a signal from its short-time Fourier transform Y and a 3-element vector C specifying window size, increment, and window type.
+The values Y and C can be derived by
+[Y, C] = stft (X , ...)
+</para>
+</refsection>
+</refentry>
diff --git a/help/en_US/wconv.xml b/help/en_US/wconv.xml
new file mode 100644
index 0000000..acbf777
--- /dev/null
+++ b/help/en_US/wconv.xml
@@ -0,0 +1,64 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from wconv.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="wconv" 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>wconv</refname>
+ <refpurpose>Performs 1D or 2D convolution.</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ y = wconv (type, x, f)
+ y = wconv (type, x, f, shape)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>type:</term>
+ <listitem><para> convolution type.</para></listitem></varlistentry>
+ <varlistentry><term>x:</term>
+ <listitem><para> Signal vector or matrix.</para></listitem></varlistentry>
+ <varlistentry><term>f:</term>
+ <listitem><para> FIR filter coefficients.</para></listitem></varlistentry>
+ <varlistentry><term>shape:</term>
+ <listitem><para> Shape.</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+This is an Octave function.
+It performs 1D or 2D convolution between the signal x and the filter coefficients f.
+</para>
+</refsection>
+
+<refsection>
+ <title>Examples</title>
+ <programlisting role="example"><![CDATA[
+a = [1 2 3 4 5]
+b = [7 8 9 10]
+wconv(1,a,b)
+ans =
+7 22 46 80 114 106 85 50
+ ]]></programlisting>
+</refsection>
+</refentry>
diff --git a/help/en_US/xcov1.xml b/help/en_US/xcov1.xml
new file mode 100644
index 0000000..7a866bb
--- /dev/null
+++ b/help/en_US/xcov1.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from xcov1.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="xcov1" 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>xcov1</refname>
+ <refpurpose></refpurpose>
+ </refnamediv>
+
+</refentry>
diff --git a/help/en_US/yulewalker.xml b/help/en_US/yulewalker.xml
new file mode 100644
index 0000000..5fdac3c
--- /dev/null
+++ b/help/en_US/yulewalker.xml
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from yulewalker.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="yulewalker" 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>yulewalker</refname>
+ <refpurpose>Fit an AR (p)-model with Yule-Walker estimates given a vector C of autocovariances '[gamma_0, ..., gamma_p]'.</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ A = yulewalker(C)
+ [A,V]= yulewalker(C)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>C:</term>
+ <listitem><para> Autocovariances</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+Fit an AR (p)-model with Yule-Walker estimates given a vector C of autocovariances '[gamma_0, ..., gamma_p]'.
+Returns the AR coefficients, A, and the variance of white noise, V.
+</para>
+</refsection>
+</refentry>
diff --git a/help/en_US/zp2ss.xml b/help/en_US/zp2ss.xml
new file mode 100644
index 0000000..64b0594
--- /dev/null
+++ b/help/en_US/zp2ss.xml
@@ -0,0 +1,90 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from zp2ss.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="zp2ss" 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>zp2ss</refname>
+ <refpurpose>Converts zeros / poles to state space.</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ [a, b, c, d] = zp2ss (z, p, k)
+ [a, b, c] = zp2ss (z, p, k)
+ [a, b] = zp2ss (z, p, k)
+ a = zp2ss (z, p, k)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>z:</term>
+ <listitem><para> Zeros</para></listitem></varlistentry>
+ <varlistentry><term>p:</term>
+ <listitem><para> Poles</para></listitem></varlistentry>
+ <varlistentry><term>k:</term>
+ <listitem><para> Leading coefficient</para></listitem></varlistentry>
+ <varlistentry><term>a:</term>
+ <listitem><para> State space parameter</para></listitem></varlistentry>
+ <varlistentry><term>a:</term>
+ <listitem><para> State space parameter</para></listitem></varlistentry>
+ <varlistentry><term>b:</term>
+ <listitem><para> State space parameter</para></listitem></varlistentry>
+ <varlistentry><term>c:</term>
+ <listitem><para> State space parameter</para></listitem></varlistentry>
+ <varlistentry><term>d:</term>
+ <listitem><para> State space parameter</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+This is an Octave function.
+It converts zeros / poles to state space.
+</para>
+</refsection>
+
+<refsection>
+ <title>Examples</title>
+ <programlisting role="example"><![CDATA[
+z = [1 2 3]
+p = [4 5 6]
+k = 5
+[a, b, c, d] = zp2ss (z, p, k)
+a =
+
+-0.00000 0.00000 -1.20000
+-10.00000 0.00000 -7.40000
+0.00000 10.00000 15.00000
+
+b =
+
+-5.7000
+-31.5000
+45.0000
+
+c =
+
+0.00000 0.00000 1.00000
+
+d = 5
+ ]]></programlisting>
+</refsection>
+</refentry>
diff --git a/help/en_US/zp2tf.xml b/help/en_US/zp2tf.xml
new file mode 100644
index 0000000..c9e16af
--- /dev/null
+++ b/help/en_US/zp2tf.xml
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ *
+ * This help file was generated from zp2tf.sci using help_from_sci().
+ *
+ -->
+
+<refentry version="5.0-subset Scilab" xml:id="zp2tf" 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>zp2tf</refname>
+ <refpurpose>Converts zeros / poles to a transfer function.</refpurpose>
+ </refnamediv>
+
+
+<refsynopsisdiv>
+ <title>Calling Sequence</title>
+ <synopsis>
+ [num, den] = zp2tf (z, p, k)
+ num = zp2tf (z, p, k)
+ </synopsis>
+</refsynopsisdiv>
+
+<refsection>
+ <title>Parameters</title>
+ <variablelist>
+ <varlistentry><term>z:</term>
+ <listitem><para> Zeros</para></listitem></varlistentry>
+ <varlistentry><term>p:</term>
+ <listitem><para> Poles</para></listitem></varlistentry>
+ <varlistentry><term>k:</term>
+ <listitem><para> Leading coefficient</para></listitem></varlistentry>
+ <varlistentry><term>Num:</term>
+ <listitem><para> Numerator of the transfer function</para></listitem></varlistentry>
+ <varlistentry><term>den:</term>
+ <listitem><para> Denomenator of the transfer function</para></listitem></varlistentry>
+ </variablelist>
+</refsection>
+
+<refsection>
+ <title>Description</title>
+ <para>
+This is an Octave function.
+It converts zeros / poles to a transfer function.
+</para>
+</refsection>
+
+<refsection>
+ <title>Examples</title>
+ <programlisting role="example"><![CDATA[
+z = [1 2 3]
+p = [4 5 6]
+k = 5
+[num, den] = zp2tf (z, p, k)
+num =
+
+5 -30 55 -30
+
+den =
+
+1 -15 74 -120
+ ]]></programlisting>
+</refsection>
+</refentry>