root/library/bdm/design/arx2statespace_notes.lyx @ 1469

Revision 1469, 3.6 kB (checked in by smidl, 10 years ago)

upravy rand

Line 
1#LyX 2.0 created this file. For more info see http://www.lyx.org/
2\lyxformat 413
3\begin_document
4\begin_header
5\textclass article
6\use_default_options true
7\maintain_unincluded_children false
8\language english
9\language_package default
10\inputencoding auto
11\fontencoding global
12\font_roman default
13\font_sans default
14\font_typewriter default
15\font_default_family default
16\use_non_tex_fonts false
17\font_sc false
18\font_osf false
19\font_sf_scale 100
20\font_tt_scale 100
21
22\graphics default
23\default_output_format default
24\output_sync 0
25\bibtex_command default
26\index_command default
27\paperfontsize default
28\use_hyperref false
29\papersize default
30\use_geometry false
31\use_amsmath 1
32\use_esint 1
33\use_mhchem 1
34\use_mathdots 1
35\cite_engine basic
36\use_bibtopic false
37\use_indices false
38\paperorientation portrait
39\suppress_date false
40\use_refstyle 0
41\index Index
42\shortcut idx
43\color #008000
44\end_index
45\secnumdepth 3
46\tocdepth 3
47\paragraph_separation indent
48\paragraph_indentation default
49\quotes_language english
50\papercolumns 1
51\papersides 1
52\paperpagestyle default
53\tracking_changes false
54\output_changes false
55\html_math_output 0
56\html_css_as_file 0
57\html_be_strict false
58\end_header
59
60\begin_body
61
62\begin_layout Standard
63System
64\begin_inset Formula
65\[
66y_{t}=y_{t-1}+bu_{t}+e_{t}
67\]
68
69\end_inset
70
71 is assumed to fullfill causality, i.e.
72 
73\begin_inset Formula $y_{t-1}\rightarrow u_{t}\rightarrow y_{t}$
74\end_inset
75
76 
77\end_layout
78
79\begin_layout Standard
80with change in notation, i.e.
81 
82\begin_inset Formula $y_{t-1}\rightarrow u_{t-1}\rightarrow y_{t}$
83\end_inset
84
85 the same system is:
86\begin_inset Formula
87\[
88y_{t}=y_{t-1}+bu_{t-1}+e_{t}
89\]
90
91\end_inset
92
93and can be transformed as
94\begin_inset Formula
95\begin{eqnarray*}
96x_{t+1} & = & x_{t}+bu_{t}+e_{t}\\
97y_{t} & = & x_{t}
98\end{eqnarray*}
99
100\end_inset
101
102Morale:
103\end_layout
104
105\begin_layout Itemize
106for transcription from ARX to State-Space, the state is one time-step shorter
107 than the regressor in ARX!
108\end_layout
109
110\begin_layout Subsection*
111Delays in
112\begin_inset Formula $u$
113\end_inset
114
115:
116\end_layout
117
118\begin_layout Standard
119System
120\begin_inset Formula
121\[
122y_{t}=y_{t-1}+bu_{t}+cu_{t-1}+e_{t}
123\]
124
125\end_inset
126
127is
128\begin_inset Formula
129\begin{eqnarray*}
130\left[\begin{array}{c}
131x_{t+1}\\
132u_{t}
133\end{array}\right] & =\left[\begin{array}{cc}
1341 & c\\
1350 & 0
136\end{array}\right] & \left[\begin{array}{c}
137x_{t}\\
138u_{t-1}
139\end{array}\right]+\left[\begin{array}{c}
140b\\
1411
142\end{array}\right]u_{t}+e_{t}\\
143y_{t} & = & x_{t}
144\end{eqnarray*}
145
146\end_inset
147
148
149\end_layout
150
151\begin_layout Standard
152System #2:
153\begin_inset Formula
154\[
155y_{t}=ay_{t-1}+a_{2}y_{t-2}+bu_{t-1}+cu_{t-2}+e_{t}
156\]
157
158\end_inset
159
160is
161\begin_inset Formula
162\begin{eqnarray*}
163\left[\begin{array}{c}
164x_{t+1}\\
165x_{t}\\
166u_{t}
167\end{array}\right] & =\left[\begin{array}{ccc}
168a_{1} & a_{2} & c\\
1691 & 0 & 0\\
1700 & 0 & 0
171\end{array}\right] & \left[\begin{array}{c}
172x_{t}\\
173x_{t-1}\\
174u_{t-1}
175\end{array}\right]+\left[\begin{array}{c}
176b\\
177\\
1781
179\end{array}\right]u_{t}+e_{t}\\
180y_{t} & = & x_{t}
181\end{eqnarray*}
182
183\end_inset
184
185
186\end_layout
187
188\begin_layout Standard
189Notation in BDM:
190\end_layout
191
192\begin_layout Standard
193xrv = [y{0}, u{-1}]
194\end_layout
195
196\begin_layout Subsection*
197Constant term
198\end_layout
199
200\begin_layout Standard
201System
202\begin_inset Formula
203\[
204y_{t}=y_{t-1}+bu_{t-1}+g+e_{t}
205\]
206
207\end_inset
208
209must be modelled as
210\begin_inset Formula
211\[
212\left[\begin{array}{c}
213x_{t+1}\\
214one
215\end{array}\right]=\left[\begin{array}{cc}
2161 & c\\
2170 & 0
218\end{array}\right]\left[\begin{array}{c}
219x_{t}\\
220one
221\end{array}\right]+\left[\begin{array}{c}
222b\\
2231
224\end{array}\right]u_{t}+e_{t}
225\]
226
227\end_inset
228
229where one is an extra state variable.
230\end_layout
231
232\end_body
233\end_document
Note: See TracBrowser for help on using the browser.