diff options
author | ttt | 2018-12-06 13:42:14 +0530 |
---|---|---|
committer | ttt | 2018-12-06 13:42:14 +0530 |
commit | d6e8cfd86be242d0a1a09a1ef7d8b7f3d12af795 (patch) | |
tree | fdbe9d1a10e7c256e86d7efae276fa75615cd0ba /help/en_US/upfirdn.xml | |
parent | 3ffa5ac619587eadfdb4ffd3e2fee57fee385e21 (diff) | |
download | FOSSEE-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/upfirdn.xml')
-rw-r--r-- | help/en_US/upfirdn.xml | 41 |
1 files changed, 1 insertions, 40 deletions
diff --git a/help/en_US/upfirdn.xml b/help/en_US/upfirdn.xml index 98da4ec..f8826a6 100644 --- a/help/en_US/upfirdn.xml +++ b/help/en_US/upfirdn.xml @@ -17,46 +17,7 @@ <refnamediv> <refname>upfirdn</refname> - <refpurpose>This function upsamples the input data, applies the FIR filter and then downsamples it.</refpurpose> + <refpurpose>Esentially it is a cascade of three processes:</refpurpose> </refnamediv> - -<refsynopsisdiv> - <title>Calling Sequence</title> - <synopsis> - y = upfirdn (x, h, p, q) - </synopsis> -</refsynopsisdiv> - -<refsection> - <title>Parameters</title> - <variablelist> - <varlistentry><term>x:</term> - <listitem><para> The input signal.</para></listitem></varlistentry> - <varlistentry><term>h:</term> - <listitem><para> The impulse response of the FIR filter.</para></listitem></varlistentry> - <varlistentry><term>p:</term> - <listitem><para>The upsampling factor(default=1) </para></listitem></varlistentry> - <varlistentry><term>q:</term> - <listitem><para>The downsampling factor(default=1) </para></listitem></varlistentry> - </variablelist> -</refsection> - -<refsection> - <title>Description</title> - <para> - -This function upsamples the input data in the matrix by a factor of n. Then the upsampled data is FIR filtered. After this, the resultant is downsampled. -</para> -</refsection> - -<refsection> - <title>Examples</title> - <programlisting role="example"><![CDATA[ -upfirdn([1,2,3],2,3,5) -//ans = - -//2. 0. - ]]></programlisting> -</refsection> </refentry> |