- 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 2025.0.0. This page might be outdated.
See the recommended documentation of this function
ffilt
coefficients of FIR low-pass
Calling Sequence
[x]=ffilt(ft,n,fl,fh)
Arguments
- ft
filter type where
ft
can take the values- "lp"
for low-pass filter
- "hp"
for high-pass filter
- "bp"
for band-pass filter
- "sb"
for stop-band filter
- n
integer (number of filter samples desired)
- fl
real (low frequency cut-off)
- fh
real (high frequency cut-off)
- x
vector of filter coefficients
Description
Get n
coefficients of a FIR low-pass,
high-pass, band-pass, or stop-band filter.
For low and high-pass filters one cut-off
frequency must be specified whose value is
given in fl
. For band-pass and stop-band
filters two cut-off frequencies must be
specified for which the lower value is in
fl
and the higher value is in fh
Authors
C. B.
<< faurre | Signal Processing | fft >> |