summaryrefslogtreecommitdiff
path: root/help/en_US/residued.xml
diff options
context:
space:
mode:
authorttt2018-12-06 13:42:14 +0530
committerttt2018-12-06 13:42:14 +0530
commitd6e8cfd86be242d0a1a09a1ef7d8b7f3d12af795 (patch)
treefdbe9d1a10e7c256e86d7efae276fa75615cd0ba /help/en_US/residued.xml
parent3ffa5ac619587eadfdb4ffd3e2fee57fee385e21 (diff)
downloadFOSSEE-Signal-Processing-Toolbox-d6e8cfd86be242d0a1a09a1ef7d8b7f3d12af795.tar.gz
FOSSEE-Signal-Processing-Toolbox-d6e8cfd86be242d0a1a09a1ef7d8b7f3d12af795.tar.bz2
FOSSEE-Signal-Processing-Toolbox-d6e8cfd86be242d0a1a09a1ef7d8b7f3d12af795.zip
code by jitendra and added more test4.sce
Diffstat (limited to 'help/en_US/residued.xml')
-rw-r--r--help/en_US/residued.xml54
1 files changed, 1 insertions, 53 deletions
diff --git a/help/en_US/residued.xml b/help/en_US/residued.xml
index 1aa9f3c..257c2bf 100644
--- a/help/en_US/residued.xml
+++ b/help/en_US/residued.xml
@@ -17,59 +17,7 @@
<refnamediv>
<refname>residued</refname>
- <refpurpose></refpurpose>
+ <refpurpose>IIR part (poles p and residues r) is driven in parallel</refpurpose>
</refnamediv>
-
-<refsynopsisdiv>
- <title>Calling Sequence</title>
- <synopsis>
- [r,p,f,m]=residued(b,a)
- </synopsis>
-</refsynopsisdiv>
-
-<refsection>
- <title>Parameters</title>
- <variablelist>
- <varlistentry><term>b:</term>
- <listitem><para> Real or complex valued vector or matrix</para></listitem></varlistentry>
- <varlistentry><term>a:</term>
- <listitem><para> Real or complex valued vector or matrix</para></listitem></varlistentry>
- </variablelist>
-</refsection>
-
-<refsection>
- <title>Description</title>
- <para>
-Similar to the "residuez" function. The difference being in the function "residuez", the IIR part (poles p and residues r) is driven in parallel with the FIR part(f) whereas in the function "residued", the IIR part is driven by the output of the FIR part. In signal modeling applications, this structure can be more accurate.NOTE that the polynomials 'b' and 'a' should have real coefficients(because of the function 'filter' used in polyval). This function works for transfer functions which are proper fractions.
-</para>
-<para>
-<latex>
-\begin{eqnarray}
-\frac{B(s)}{A(s)}=\sum_{m=1}^{M}\frac{r(m)}{(s-p(m))^{e(m)}}+\sum_{i=1}^{N}k(i)*{s^{N-i}}
-\end{eqnarray}
-</latex>
-</para>
-</refsection>
-
-<refsection>
- <title>Examples</title>
- <programlisting role="example"><![CDATA[
-1.
-B=[1 1 ]; A=[1 -2 1];
- [r,p,f,m] = residued(B,A)
-//OUTPUT
-//r =
-// -1
-// 2
-//p =
-// 1
-// 1
-//
-//f = [](0x0)
-//e =
-// 1
-// 2
- ]]></programlisting>
-</refsection>
</refentry>