1 <?xml version="1.0" encoding="UTF-8"?>
2 <refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svg="http://www.w3.org/2000/svg" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:db="http://docbook.org/ns/docbook" version="5.0-subset Scilab" xml:lang="en" xml:id="zpch2">
4 <refname>zpch2</refname>
5 <refpurpose> Chebyshev analog filter</refpurpose>
8 <title>Calling Sequence</title>
9 <synopsis>[zeros,poles,gain]=zpch2(n,A,omegar)</synopsis>
12 <title>Arguments</title>
17 <para>integer : filter order</para>
24 real : attenuation in stop band (<literal>A>1</literal>)
31 <para>real : cut-off frequency in Hertz</para>
37 <para>resulting filter zeros</para>
43 <para>resulting filter poles</para>
49 <para>Resulting filter gain</para>
55 <title>Description</title>
57 Poles and zeros of a type 2 Chebyshev analog filter
58 gain is the gain of the filter
60 <programlisting role=""><![CDATA[
61 H(s)=gain*poly(zeros,'s')/poly(poles,'s')