Main Content

cheby1

Chebyshev Type I filter design

Description

[b,a] = cheby1(n,Rp,Wp) designs an nth-order lowpass digital Chebyshev Type I filter with normalized passband edge frequency Wp and Rp decibels of peak-to-peak passband ripple. The cheby1 function returns the numerator and denominator coefficients of the filter transfer function.

example

[b,a] = cheby1(n,Rp,Wp,fType) designs a lowpass, highpass, bandpass, or bandstop digital Chebyshev Type I filter, depending on the value of fType and the number of elements of Wp. The resulting bandpass and bandstop designs are of order 2n.

Note

You might encounter numerical instabilities when designing IIR filters with transfer functions for orders as low as 4. See Transfer Functions and CTF for more information about numerical issues that affect forming the transfer function.

example

[z,p,k] = cheby1(___) designs a digital Chebyshev Type I filter and returns its zeros, poles, and gain. This syntax can include any of the input arguments in previous syntaxes.

example

[A,B,C,D] = cheby1(___) designs a digital Chebyshev Type I filter and returns the matrices that specify its state-space representation.

example

[___] = cheby1(___,"s") designs an analog Chebyshev Type I filter using any of the input or output arguments in previous syntaxes.

example

[B,A] = cheby1(n,Rp,Wp,"ctf") designs a lowpass digital Chebyshev Type I filter using second-order Cascaded Transfer Functions (CTF). The function returns matrices that list the denominator and numerator polynomial coefficients of the filter transfer function, represented as a cascade of filter sections. This approach generates IIR filters with improved numerical stability compared to single-section transfer functions. (since R2024b)

example

[___] = cheby1(n,Rp,Wp,fType,"ctf") designs a lowpass, highpass, bandpass, or bandstop digital Chebyshev Type I filter, and returns the filter representation using the CTF format. The resulting design sections are of order 2 (lowpass and highpass filters) or 4 (bandpass and bandstop filters). (since R2024b)

[___,gS] = cheby1(___) also returns the overall gain of the system. You must specify "ctf" to return gS. (since R2024b)

Examples

collapse all

Design a 6th-order lowpass Chebyshev Type I filter with 10 dB of passband ripple and a passband edge frequency of 300 Hz, which, for data sampled at 1000 Hz, corresponds to 0.6π rad/sample. Plot its magnitude and phase responses. Use it to filter a 1000-sample random signal.

fc = 300;
fs = 1000;

[b,a] = cheby1(6,10,fc/(fs/2));

freqz(b,a,[],fs)

subplot(2,1,1)
ylim([-100 20])

Figure contains 2 axes objects. Axes object 1 with title Phase, xlabel Frequency (Hz), ylabel Phase (degrees) contains an object of type line. Axes object 2 with title Magnitude, xlabel Frequency (Hz), ylabel Magnitude (dB) contains an object of type line.

dataIn = randn(1000,1);
dataOut = filter(b,a,dataIn);

Design a 6th-order Chebyshev Type I bandstop filter with normalized edge frequencies of 0.2π and 0.6π rad/sample and 5 dB of passband ripple. Plot its magnitude and phase responses. Use it to filter random data.

[b,a] = cheby1(3,5,[0.2 0.6],'stop');
freqz(b,a)

Figure contains 2 axes objects. Axes object 1 with title Phase, xlabel Normalized Frequency (\times\pi rad/sample), ylabel Phase (degrees) contains an object of type line. Axes object 2 with title Magnitude, xlabel Normalized Frequency (\times\pi rad/sample), ylabel Magnitude (dB) contains an object of type line.

dataIn = randn(1000,1);
dataOut = filter(b,a,dataIn);

Design a 9th-order highpass Chebyshev Type I filter with 0.5 dB of passband ripple and a passband edge frequency of 300 Hz, which, for data sampled at 1000 Hz, corresponds to 0.6π rad/sample. Convert the zeros, poles, and gain to second-order sections. Plot the magnitude and phase responses of the filter.

[z,p,k] = cheby1(9,0.5,300/500,'high');
sos = zp2sos(z,p,k);
freqz(sos)

Figure contains 2 axes objects. Axes object 1 with title Phase, xlabel Normalized Frequency (\times\pi rad/sample), ylabel Phase (degrees) contains an object of type line. Axes object 2 with title Magnitude, xlabel Normalized Frequency (\times\pi rad/sample), ylabel Magnitude (dB) contains an object of type line.

Design a 20th-order Chebyshev Type I bandpass filter with a lower passband frequency of 400 Hz and a higher passband frequency of 560 Hz. Specify a passband ripple of 3 dB and a sample rate of 1500 Hz. Use the state-space representation.

fs = 1500;

[A,B,C,D] = cheby1(10,3,[400 560]/(fs/2));

Convert the state-space representation to second-order sections and visualize the filter response.

sos = ss2sos(A,B,C,D);
freqz(sos,[],fs)

Figure contains 2 axes objects. Axes object 1 with title Phase, xlabel Frequency (Hz), ylabel Phase (degrees) contains an object of type line. Axes object 2 with title Magnitude, xlabel Frequency (Hz), ylabel Magnitude (dB) contains an object of type line.

Design an identical filter using designfilt. Visualize the filter response.

d = designfilt("bandpassiir",FilterOrder=20, ...
    PassbandFrequency1=400,PassbandFrequency2=560, ...
    PassbandRipple=3,SampleRate=fs);
freqz(d,[],fs)

Figure contains 2 axes objects. Axes object 1 with title Phase, xlabel Frequency (Hz), ylabel Phase (degrees) contains an object of type line. Axes object 2 with title Magnitude, xlabel Frequency (Hz), ylabel Magnitude (dB) contains an object of type line.

Design a fifth-order analog Butterworth lowpass filter with a cutoff frequency of 2 GHz. Multiply by 2π to convert the frequency to radians per second. Compute the frequency response of the filter at 4096 points.

n = 5;
wc = 2*pi*2e9;
w = 2*pi*1e9*logspace(-2,1,4096)';

[zb,pb,kb] = butter(n,wc,"s");
[bb,ab] = zp2tf(zb,pb,kb);
[hb,wb] = freqs(bb,ab,w);
gdb = -diff(unwrap(angle(hb)))./diff(wb);

Design a fifth-order Chebyshev Type I filter with the same edge frequency and 3 dB of passband ripple. Compute its frequency response.

[z1,p1,k1] = cheby1(n,3,wc,"s");
[b1,a1] = zp2tf(z1,p1,k1);
[h1,w1] = freqs(b1,a1,w);
gd1 = -diff(unwrap(angle(h1)))./diff(w1);

Design a fifth-order Chebyshev Type II filter with the same edge frequency and 30 dB of stopband attenuation. Compute its frequency response.

[z2,p2,k2] = cheby2(n,30,wc,"s");
[b2,a2] = zp2tf(z2,p2,k2);
[h2,w2] = freqs(b2,a2,w);
gd2 = -diff(unwrap(angle(h2)))./diff(w2);

Design a fifth-order elliptic filter with the same edge frequency, 3 dB of passband ripple, and 30 dB of stopband attenuation. Compute its frequency response.

[ze,pe,ke] = ellip(n,3,30,wc,"s");
[be,ae] = zp2tf(ze,pe,ke);
[he,we] = freqs(be,ae,w);
gde = -diff(unwrap(angle(he)))./diff(we);

Design a fifth-order Bessel filter with the same edge frequency. Compute its frequency response.

[zf,pf,kf] = besself(n,wc);
[bf,af] = zp2tf(zf,pf,kf);
[hf,wf] = freqs(bf,af,w);
gdf = -diff(unwrap(angle(hf)))./diff(wf);

Plot the attenuation in decibels. Express the frequency in gigahertz. Compare the filters.

fGHz = [wb w1 w2 we wf]/(2e9*pi);
plot(fGHz,mag2db(abs([hb h1 h2 he hf])))
axis([0 5 -45 5])
grid on
xlabel("Frequency (GHz)")
ylabel("Attenuation (dB)")
legend(["butter" "cheby1" "cheby2" "ellip" "besself"])

Figure contains an axes object. The axes object with xlabel Frequency (GHz), ylabel Attenuation (dB) contains 5 objects of type line. These objects represent butter, cheby1, cheby2, ellip, besself.

Plot the group delay in samples. Express the frequency in gigahertz and the group delay in nanoseconds. Compare the filters.

gdns = [gdb gd1 gd2 gde gdf]*1e9;
gdns(gdns<0) = NaN;
loglog(fGHz(2:end,:),gdns)
grid on
xlabel("Frequency (GHz)")
ylabel("Group delay (ns)")
legend(["butter" "cheby1" "cheby2" "ellip" "besself"])

Figure contains an axes object. The axes object with xlabel Frequency (GHz), ylabel Group delay (ns) contains 5 objects of type line. These objects represent butter, cheby1, cheby2, ellip, besself.

The Butterworth and Chebyshev Type II filters have flat passbands and wide transition bands. The Chebyshev Type I and elliptic filters roll off faster but have passband ripple. The frequency input to the Chebyshev Type II design function sets the beginning of the stopband rather than the end of the passband. The Bessel filter has approximately constant group delay along the passband.

Design a ninth-order highpass Chebyshev Type I filter with a cutoff frequency of 300 Hz and sampling rate of 1000 Hz. The passband ripple is 5 dB. Return the coefficients of the filter system as a cascade of second-order sections.

Wn = 300/(1000/2);
[B,A] = cheby1(9,5,Wn,"high","ctf")
B = 5×3

    0.1336   -0.1336         0
    0.1336   -0.2671    0.1336
    0.1336   -0.2671    0.1336
    0.1336   -0.2671    0.1336
    0.1336   -0.2671    0.1336

A = 5×3

    1.0000    0.9022         0
    1.0000    1.6117    0.8336
    1.0000    1.1993    0.8788
    1.0000    0.8296    0.9291
    1.0000    0.6335    0.9767

Plot the magnitude response of the filter.

filterAnalyzer(B,A)

Input Arguments

collapse all

Filter order, specified as an integer scalar less than or equal to 500. For bandpass and bandstop designs, n represents one-half the filter order.

Data Types: double

Peak-to-peak passband ripple, specified as a positive scalar expressed in decibels.

If your specification, ℓ, is in linear units, you can convert it to decibels using Rp = 40 log10((1+ℓ)/(1–ℓ)).

Data Types: double

Passband edge frequency, specified as a scalar or a two-element vector. The passband edge frequency is the frequency at which the magnitude response of the filter is –Rp decibels. Smaller values of passband ripple, Rp, result in wider transition bands.

  • If Wp is a scalar, then cheby1 designs a lowpass or highpass filter with edge frequency Wp.

    If Wp is the two-element vector [w1 w2], where w1 < w2, then cheby1 designs a bandpass or bandstop filter with lower edge frequency w1 and higher edge frequency w2.

  • For digital filters, the passband edge frequencies must lie between 0 and 1, where 1 corresponds to the Nyquist rate—half the sample rate or π rad/sample.

    For analog filters, the passband edge frequencies must be expressed in radians per second and can take on any positive value.

Data Types: double

Filter type, specified as one of the following:

  • "low" specifies a lowpass filter with passband edge frequency Wp. "low" is the default for scalar Wp.

  • "high" specifies a highpass filter with passband edge frequency Wp.

  • "bandpass" specifies a bandpass filter of order 2n if Wp is a two-element vector. "bandpass" is the default when Wp has two elements.

  • "stop" specifies a bandstop filter of order 2n if Wp is a two-element vector.

Output Arguments

collapse all

Transfer function coefficients of the filter, returned as row vectors. Given the filter order n, the function returns b and a with r samples, where r = n+1 for lowpass and highpass filters and r = 2*n+1 for bandpass and bandstop filters.

The transfer function is expressed in terms of b = [b1 b2br] and a = [a1 a2ar] as one of these:

  • H(z)=b1+b2z1++brz(r1)a1+a2z1++arz(r1) for digital filters.

  • H(s)=b1sr1+b2sr2++bra1sr1+a2sr2++ar for analog filters.

Data Types: double

Zeros, poles, and gain of the filter, returned as two column vectors and a scalar. Given the filter order n, the function returns z and p with r samples, where r = n for lowpass and highpass filters and r = 2*n for bandpass and bandstop filters.

The transfer function is expressed in terms of z = [z1 z2zr], p = [p1 p2pr], and k as one of these:

  • H(z)=k(1z1z1)(1z2z1)(1zrz1)(1p1z1)(1p2z1)(1prz1) for digital filters.

  • H(s)=k(sz1)(sz2)(szr)(sp1)(sp2)(spr) for analog filters.

Data Types: double

State-space representation of the filter, returned as matrices. If r = n for lowpass and highpass designs and r = 2n for bandpass and bandstop filters, then A is r × r, B is r × 1, C is 1 × r, and D is 1 × 1.

The state-space matrices relate the state vector x, the input u, and the output y through one of these equation systems.

  • For digital filters:

    x(k+1)=Ax(k)+Bu(k)y(k)=Cx(k)+Du(k).

  • For analog filters:

    x˙=Ax+Buy=Cx+Du.

Data Types: double

Since R2024b

Cascaded transfer function (CTF) coefficients, returned as a row vector or matrix. B and A list the numerator and denominator coefficients of the cascaded transfer function, respectively.

The sizes for B and A are L-by-(m+1) and L-by-(n+1), respectively. The function returns the first column of A as 1, thus A(1)=1 when A is a row vector.

  • L represents the number of filter sections.

  • m represents the order of the filter numerators.

  • n represents the order of the filter denominators.

The cheby1 function returns the CTF coefficients with these order specifications:

  • m = n = 2 for lowpass and highpass filters.

  • m = n = 4 for bandpass and bandstop filters.

Note

To customize the CTF coefficient computation, such as setting a different order in the CTF coefficients or customizing the gain scaling, specify to return z,p,k and then use zp2ctf to obtain B,A.

For more information about the cascaded transfer function format and coefficient matrices, see Return Digital Filters in CTF Format.

Since R2024b

Overall system gain, returned as a real-valued scalar.

  • If you specify to return gS, the cheby1 function normalizes the numerator coefficients so that the first column of B is 1 and returns the overall system gain in gS.

  • If you do not specify to return gS, the cheby1 function uniformly distributes the system gain across all system sections using the scaleFilterSections function.

More About

collapse all

Cascaded Transfer Functions

Partitioning an IIR digital filter into cascaded sections improves its numerical stability and reduces its susceptibility to coefficient quantization errors. The cascaded form of a transfer function H(z) in terms of the L transfer functions H1(z), H2(z), …, HL(z) is

H(z)=l=1LHl(z)=H1(z)×H2(z)××HL(z).

Return Digital Filters in CTF Format

Specify B and A to return the filter coefficients. You can also specify gS to return the overall system gain of the filter. By specifying these output arguments, you can design digital filters in the CTF format for analysis, visualization, and signal filtering.

Filter Coefficients

When you specify to return the numerator and denominator coefficients in the CTF format, the L-row matrices B and A are returned as

B=[b11b12b1,m+1b21b22b2,m+1bL1bL2bL,m+1],A=[1a12a1,n+11a22a2,n+11aL2aL,n+1],

such that the full transfer function of the filter is

H(z)=b11+b12z1++b1,m+1zm1+a12z1++a1,n+1zn×b21+b22z1++b2,m+1zm1+a22z1++a2,n+1zn××bL1+bL2z1++bL,m+1zm1+aL2z1++aL,n+1zn,

where m ≥ 0 is the numerator order of the filter and n ≥ 0 is the denominator order.

Note

Coefficients and Gain

You can specify to return the coefficients and overall system gain using the output argument triplet [B,A,gS]. In this case, the numerator coefficients are normalized, returning the filter coefficient matrices and gain as

B=[1β12β1,m+11β22β2,m+11βL2βL,m+1],A=[1a12a1,n+11a22a2,n+11aL2aL,n+1],gS,

so that the transfer function is

H(z)=gS(1+β12z1++β1,m+1zm1+a12z1++a1,n+1zn×1+β22z1++β2,m+1zm1+a22z1++a2,n+1zn××1+βL2z1++βL,m+1zm1+aL2z1++aL,n+1zn).

This transfer function is equivalent to the one defined in the Filter Coefficients section, where gS = b11×b21×...×bL1, and βli = bli/bl1 for i = 1,2,…,m and l = 1,2,…,L.

Transfer Functions and CTF

Numerical Instability of Transfer Function Syntax

In general, use cascaded transfer functions ("ctf" syntaxes) to design IIR digital filters. If you design the filter using transfer functions (any of the [b,a] syntaxes), you might encounter numerical instabilities. These instabilities are due to round-off errors and can occur for an order n as low as 4. This example illustrates this limitation.

n = 6;
Rp = 0.6;
Fs = 200e6;
Wn = [0.5e6 6e6]/(Fs/2);
ftype = "bandpass";

% Transfer Function (TF) design
[b,a] = cheby1(n,Rp,Wn,ftype); % This is an unstable filter

% CTF design
[B,A] = cheby1(n,Rp,Wn,ftype,"ctf");

% Compare frequency responses
[hTF,f] = freqz(b,a,8192,Fs);
hCTF = freqz(B,A,8192,Fs);

semilogx(f/1e6,db(hTF),".-",f/1e6,db(hCTF))
grid on
legend(["TF Design" "CTF Design"])
xlabel("Frequency (MHz)")
ylabel("Magnitude (dB)")

Figure contains an axes object. The axes object with xlabel Frequency (MHz), ylabel Magnitude (dB) contains 2 objects of type line. These objects represent TF Design, CTF Design.

Algorithms

Chebyshev Type I filters are equiripple in the passband and monotonic in the stopband. Type I filters roll off faster than Type II filters, but at the expense of greater deviation from unity in the passband.

cheby1 uses a five-step algorithm:

  1. It finds the lowpass analog prototype poles, zeros, and gain using the function cheb1ap.

  2. It converts the poles, zeros, and gain into state-space form.

  3. If required, it uses a state-space transformation to convert the lowpass filter to a highpass, bandpass, or bandstop filter with the desired frequency constraints.

  4. For digital filter design, it uses bilinear to convert the analog filter into a digital filter through a bilinear transformation with frequency prewarping. Careful frequency adjustment enables the analog filters and the digital filters to have the same frequency response magnitude at Wp or w1 and w2.

  5. It converts the state-space filter back to transfer function or zero-pole-gain form, as required.

References

[1] Lyons, Richard G. Understanding Digital Signal Processing. Upper Saddle River, NJ: Prentice Hall, 2004.

Extended Capabilities

Version History

Introduced before R2006a

expand all