Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.4.1 - Русский

Change language to:
English - Français - 日本語 - Português -

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilab help >> Signal Processing > filters > zpch1

zpch1

Chebyshev analog filter

Calling Sequence

[poles,gain]=zpch1(n,epsilon,omegac)

Arguments

n

integer (filter order)

epsilon

real : ripple in the pass band (0<epsilon<1)

omegac

real : cut-off frequency in Hertz

poles

resulting filter poles

gain

resulting filter gain

Description

Poles of a Type 1 Chebyshev analog filter. The transfer function is given by :

H(s)=gain/poly(poles,'s')

Examples

n = 13;
epsilon = 0.2;
omegac = 3;
[p,gain] = zpch1(n,epsilon,omegac)
Report an issue
<< zpbutt filters zpch2 >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Tue Apr 02 17:37:55 CEST 2013