- Scilab help
- Signal Processing
- How to
- Signal
- analpf
- bilt
- buttmag
- casc
- cepstrum
- cheb1mag
- cheb2mag
- chepol
- convol
- corr
- cspect
- czt
- detrend
- dft
- ell1mag
- eqfir
- eqiir
- faurre
- ffilt
- fft
- fft2
- fftshift
- filt_sinc
- filter
- find_freq
- findm
- frfit
- frmag
- fsfirlin
- group
- hank
- hilb
- hilbert
- iir
- iirgroup
- iirlp
- intdec
- jmat
- kalm
- lattn
- lattp
- lev
- levin
- lindquist
- mese
- mfft
- mrfit
- %asn
- %k
- %sn
- phc
- pspect
- remez
- remezb
- rpem
- sincd
- srfaur
- srkf
- sskf
- syredi
- system
- trans
- wfir
- wiener
- wigner
- window
- yulewalk
- zpbutt
- zpch1
- zpch2
- zpell
Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
See the recommended documentation of this function
eqiir
Design of iir filters
Calling Sequence
[cells,fact,zzeros,zpoles]=eqiir(ftype,approx,om,deltap,deltas)
Arguments
- ftype
- filter type ( - 'lp','hp','sb','bp')
- approx
- design approximation ( - 'butt','cheb1','cheb2','ellip')
- om
- 4-vector of cutoff frequencies (in radians) - om=[om1,om2,om3,om4],- 0 <= om1 <= om2 <= om3 <= om4 <= pi. When- ftype='lp' or 'hp',- om3and- om4are not used and may be set to 0.
- deltap
- ripple in the passband. - 0<= deltap <=1
- deltas
- ripple in the stopband. - 0<= deltas <=1
- cells
- realization of the filter as second order cells 
- fact
- normalization constant 
- zzeros
- zeros in the z-domain 
- zpoles
- poles in the z-domain 
Description
Design of iir filter based on syredi.
The filter obtained is h(z)=fact*product of the
    elements of cells.
That is
    hz=fact*prod(cells.num)./prod(cells.den).
Examples
See Also
| << eqfir | Signal Processing | faurre >> |