Man Scilab

cheb1mag
Scilab Function

cheb1mag - response of Chebyshev type 1 filter

Calling Sequence

[h2]=cheb1mag(n,omegac,epsilon,sample)

Parameters

Description

Square magnitude response of a type 1 Chebyshev filter.

omegac =passband edge.

epsilon : such that 1/(1+epsilon^2) =passband ripple.

sample : vector of frequencies where the square magnitude is desired.

Examples


//Chebyshev; ripple in the passband
n=13;epsilon=0.2;omegac=3;sample=0:0.05:10;
h=cheb1mag(n,omegac,epsilon,sample);
plot(sample,h,'frequencies','magnitude')
 
  

See Also

buttmag ,  

Back