Scilab 5.3.3
- 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
faurre
Faurreアルゴリズムによりフィルタの計算
呼び出し手順
[P,R,T]=faurre(n,H,F,G,R0)
パラメータ
- n
反復回数.
- H, F, G
y
系列の共分散から推定.- R0
E(yk*yk')
- P
n回の反復後のリカッチ方程式の解.
- R, T
フィルタのゲイン行列.
説明
この関数は代数リカッチ方程式の最小解を反復計算により求め,
フィルタモデルの行列R
および T
を
出力します.
このアルゴリズムは解Pを以下のような行列Pnの系列の上限値として計算します
-1 Pn+1=F*Pn*F'+(G-F*Pn*h')*(R0-H*Pn*H') *(G'-H*Pn*F') -1 P0=G*R0 *G'
この手法は特にFが単位円の近傍に極を有する時に 収束しないことに注意してください. この場合には,srfaur関数を使用する方が良いでしょう.
作者
G. Le V.
<< eqiir | Signal Processing | ffilt >> |