summaryrefslogtreecommitdiff
path: root/help/en_US/deconv.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/deconv.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/deconv.xml')
-rw-r--r--help/en_US/deconv.xml47
1 files changed, 1 insertions, 46 deletions
diff --git a/help/en_US/deconv.xml b/help/en_US/deconv.xml
index c056db2..d8602df 100644
--- a/help/en_US/deconv.xml
+++ b/help/en_US/deconv.xml
@@ -17,52 +17,7 @@
<refnamediv>
<refname>deconv</refname>
- <refpurpose>Deconvolve two vectors.</refpurpose>
+ <refpurpose>calling sequence:</refpurpose>
</refnamediv>
-
-<refsynopsisdiv>
- <title>Calling Sequence</title>
- <synopsis>
- [b,r]= deconv (y, a)
- </synopsis>
-</refsynopsisdiv>
-
-<refsection>
- <title>Parameters</title>
- <variablelist>
- <varlistentry><term>y:</term>
- <listitem><para>Input vector. The convolution of a and b.</para></listitem></varlistentry>
- <varlistentry><term>a:</term>
- <listitem><para>The input vector.</para></listitem></varlistentry>
- <varlistentry><term>b:</term>
- <listitem><para> The quotient polynomial coeffecients vector.</para></listitem></varlistentry>
- <varlistentry><term>r:</term>
- <listitem><para>The remainder polynomial coefficients vector. </para></listitem></varlistentry>
- </variablelist>
-</refsection>
-
-<refsection>
- <title>Description</title>
- <para>
-[b, r] = deconv (y, a) solves for b and r such that
- y = conv (a, b) + r.</para>
-<para>
-If y and a are polynomial coefficient vectors, b will
- contain the coefficients of the polynomial quotient and r will be
- a remainder polynomial of lowest order.
-
-</para>
-</refsection>
-
-<refsection>
- <title>Examples</title>
- <programlisting role="example"><![CDATA[
-[b, r] = deconv ([3, 6, 9, 9], [1, 2, 3])
-//Output:
-//b=[3, 0]
-//r=[0, 0, 0, 9]
- ]]></programlisting>
-</refsection>
-
</refentry>