Man Scilab

system
Scilab Function

system - observation update

Calling Sequence

[x1,y]=system(x0,f,g,h,q,r)

Parameters

Description

define system function which generates the next observation given the old state. System recursively calculated


     x1=f*x0+g*u
     y=h*x0+v
   
    

where u is distributed N(0,q) and v is distribute N(0,r) .

Author

C. B.

Back