-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathukf2d_written_solutions.tex
98 lines (72 loc) · 2.14 KB
/
ukf2d_written_solutions.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
\documentclass{article}
\usepackage{fullpage}
\usepackage{amsmath} % for math stuff
\usepackage{graphicx} % for inserting graphics
\usepackage{xcolor} % for text coloring
\newcommand{\todo}[1]{\textcolor{red}{\textbf{#1}}}
\title{UKF with 2D State Vector}
\author{}
\date{\today}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\maketitle
\section{Design}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\subsection{State Vector}
\begin{equation}
\mathbf{x}_t=\begin{bmatrix}
z \\
\dot z
\end{bmatrix}
\end{equation}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\subsection{Prediction Step}
\subsubsection{Control Input}
\begin{equation}
\mathbf{u}_t = \begin{bmatrix}
\ddot z
\end{bmatrix}
\end{equation}
\subsubsection{State Transition Function}
\begin{equation}
g(\mathbf{x}_{t-\Delta t}, \mathbf{u}_t, \Delta t) = \begin{bmatrix}
\todo{?} & \todo{?} \\
\todo{?} & \todo{?}
\end{bmatrix}\mathbf{x}_{t-\Delta t} + \begin{bmatrix}
\todo{?} \\
\todo{?}
\end{bmatrix}\mathbf{u}_t
\end{equation}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\subsection{Measurement Update Step}
\subsubsection{Measurement Vector}
\begin{equation}
\mathbf{z}_t = \begin{bmatrix}
r
\end{bmatrix}
\end{equation}
\subsubsection{Measurement Function}
\begin{equation}
h(\mathbf{\bar x}_t) = \begin{bmatrix}
\todo{?} & \todo{?}
\end{bmatrix}\mathbf{\bar x}_t
\end{equation}
\subsubsection{Measurement Covariance Matrix}
Populate the measurement covariance matrix $\mathbf{R}_t$ with a reasonable value for the variance $\sigma^2_r$ of the range reading $r$.
\begin{equation}
\mathbf{R}_t = \begin{bmatrix}
\todo{?}
\end{bmatrix}
\end{equation}
\noindent \todo{Your histogram image here}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{Implementation}
\subsection{Initializing $\dot z$}
\todo{Your answer here}
\subsection{Consecutive Predictions vs. Updates}
\todo{Your answer here}
\subsection{Comparison of UKF to EMA Filter}
\todo{Your answer and Height Readings chart image here}
\end{document}