- 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
wiener
Wiener estimate
Calling Sequence
[xs,ps,xf,pf]=wiener(y,x0,p0,f,g,h,q,r)
Arguments
- f, g, h
system matrices in the interval
[t0,tf]
- f
=
[f0,f1,...,ff]
, andfk
is a nxn matrix- g
=
[g0,g1,...,gf]
, andgk
is a nxn matrix- h
=
[h0,h1,...,hf]
, andhk
is a mxn matrix
- q, r
covariance matrices of dynamics and observation noise
- q
=
[q0,q1,...,qf]
, andqk
is a nxn matrix- r
=
[r0,r1,...,rf]
, andgk
is a mxm matrix
- x0, p0
initial state estimate and error variance
- y
observations in the interval
[t0,tf]
.y=[y0,y1,...,yf]
, andyk
is a column m-vector- xs
Smoothed state estimate
xs= [xs0,xs1,...,xsf]
, andxsk
is a column n-vector- ps
Error covariance of smoothed estimate
ps=[p0,p1,...,pf]
, andpk
is a nxn matrix- xf
Filtered state estimate
xf= [xf0,xf1,...,xff]
, andxfk
is a column n-vector- pf
Error covariance of filtered estimate
pf=[p0,p1,...,pf]
, andpk
is a nxn matrix
Description
function which gives the Wiener estimate using the forward-backward Kalman filter formulation
Authors
C. B.
<< wfir | Signal Processing | wigner >> |