Scilab 5.4.1
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
zpch2
Chebyshev analog filter
Calling Sequence
[zeros,poles,gain]=zpch2(n,A,omegar)
Arguments
- n
integer : filter order
- A
real : attenuation in stop band (
A>1
)- omegar
real : cut-off frequency in Hertz
- zeros
resulting filter zeros
- poles
resulting filter poles
- gain
Resulting filter gain
Description
Poles and zeros of a type 2 Chebyshev analog filter gain is the gain of the filter
Examples
n=10; A=1/0.2; omegar=6; [z,p,gain]=zpch2(n,A,omegar)
Report an issue | ||
<< zpch1 | filters | zpell >> |