diff options
author | bgtushar | 2017-11-27 20:50:49 +0530 |
---|---|---|
committer | bgtushar | 2017-11-27 20:50:49 +0530 |
commit | d972a68bc5b3c4c059b70e4f8cd64a64538c2be8 (patch) | |
tree | 0d2ed042fd29153bd9444a15f2d7807750472042 /help/en_US/pei_tseng_notch.xml | |
parent | 1a9dc5fe1e700a123787f6183bceacaefaf954d6 (diff) | |
parent | 25a88252ee49c73acb18232f6e916d7742a1af80 (diff) | |
download | FOSSEE-Signal-Processing-Toolbox-d972a68bc5b3c4c059b70e4f8cd64a64538c2be8.tar.gz FOSSEE-Signal-Processing-Toolbox-d972a68bc5b3c4c059b70e4f8cd64a64538c2be8.tar.bz2 FOSSEE-Signal-Processing-Toolbox-d972a68bc5b3c4c059b70e4f8cd64a64538c2be8.zip |
merge
Diffstat (limited to 'help/en_US/pei_tseng_notch.xml')
-rw-r--r-- | help/en_US/pei_tseng_notch.xml | 66 |
1 files changed, 66 insertions, 0 deletions
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> |