Scilab-Branch-5.3-GIT
- 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
FIRローパスフィルタの係数
呼び出し手順
[x]=ffilt(ft,n,fl,fh)
パラメータ
- ft
フィルタの型.ただし,
ft
の値には以下の値を指定できます- "lp"
ローパスフィルタの場合
- "hp"
ハイパスフィルタの場合
- "bp"
バンドパスフィルタの場合
- "sb"
ストップバンドフィルタの場合
- n
整数 (指定するフィルタ標本の数)
- fl
実数 (低周波数カットオフ)
- fh
実数 (高周波数カットオフ)
- x
フィルタ係数のベクトル
説明
FIRローパス, ハイパス, バンドパス, またはストップバンドフィルタの
n
個の係数を取得します.
ローパスおよびハイパスフィルタの場合,fl
に
カットオフ周波数を1つ指定する必要があります.
バンドパスおよびストップバンドフィルタの場合,2つのカットオフ周波数を
指定する必要があり,
低域側をfl
,高域側をfh
に指定します.
作者
C. B.
<< faurre | Signal Processing | fft >> |