1 <?xml version="1.0" encoding="UTF-8"?>
2 <refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svg="http://www.w3.org/2000/svg" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:db="http://docbook.org/ns/docbook" version="5.0-subset Scilab" xml:lang="en" xml:id="system">
4 <refname>system</refname>
5 <refpurpose> observation update</refpurpose>
8 <title>Calling Sequence</title>
9 <synopsis>[x1,y]=system(x0,f,g,h,q,r)</synopsis>
12 <title>Arguments</title>
17 <para>input state vector</para>
23 <para>system matrix</para>
29 <para>input matrix</para>
35 <para>Output matrix</para>
41 <para>input noise covariance matrix</para>
47 <para>output noise covariance matrix</para>
53 <para>output state vector</para>
59 <para>output observation</para>
65 <title>Description</title>
67 define system function which generates the next
68 observation given the old state.
69 System recursively calculated
71 <programlisting role=""><![CDATA[
76 where <literal>u</literal> is distributed <literal>N(0,q)</literal>
77 and <literal>v</literal> is distribute <literal>N(0,r)</literal>.