-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkalman.html
More file actions
78 lines (65 loc) · 1.8 KB
/
Copy pathkalman.html
File metadata and controls
78 lines (65 loc) · 1.8 KB
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
<!DOCTYPE html>
<html>
<!--------------------------------------------------------------
-- file : kalman.html
-- purpose : Page for website Piet Lammertse
----------------------------------------------------------------
-- history :
-- 2025-11-26 new
--------------------------------------------------------------->
<!-- FORMATTING ----------------------------------------------->
<head>
<meta charset = "UTF-8"
name = "viewport"
content = "width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="plammertse.css">
<title> Piet Lammertse on Kalman filters </title>
</head>
<!-- NAVIGATION BAR MENU -------------------------------------->
<body>
<ul>
<li> <a href="index.html"> Home </a> </li>
<li> <a href="kalman.html"> Kalman filters </a> </li>
</ul>
<!------------------------------------------------------------->
<h2> Kalman filters </h2>
<h4> measurement versus control </h4>
<p>
- optimal control.
</p>
<p>
- separation principle.
</p>
<p>
- state propagation and state reconstruction.
</p>
<p>
- model errors ( faulty a priori knowledge ),
like the mass of an object.
</p>
<p>
- unknown "external" inputs, like gusts of wind
( or like friction forces
if you don't consider them modelling errors).
</p>
<p>
- measurement errors.
</p>
<p>
- one day, put memo PL-00-088 here.
</p>
<p>
- describe what the SAX document is about.
</p>
<!--------------------------------------------------------------->
<hr>
<p> <i> PDF ' s : </i> </p>
<p>  
<a href="PDF/lammertse_1995_SAX_kalman_no_gyro.pdf">
SAX Kalman filter tuning no-gyro mode, 1995 </a>
</p>
<!------------------------------------------------------------->
<br> <br>
<div class="footer"> P. Lammertse, \2025 </div>
</body>
</html>