Skip to content

Commit 5de42d4

Browse files
[sample] building height plots
1 parent 669c39f commit 5de42d4

6 files changed

+1035
-3
lines changed

README.md

+9-3
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Standard formatter specialization provided for representation of the filter stat
4848

4949
## 1x1 Constant System Dynamic Model Filter
5050

51-
Example from the [building height estimation](sample/kf_1x1x0_building_height.cpp) sample. One estimated state and one observed output filter.
51+
Example from the [building height estimation](https://francoiscarouge.github.io/Kalman/kf_1x1x0_building_height_8cpp-example.xhtml) sample. One estimated state and one observed output filter.
5252

5353
```cpp
5454
kalman filter;
@@ -60,9 +60,11 @@ filter.r(25.);
6060
filter.update(48.54);
6161
```
6262

63+
[full sample code](sample/kf_1x1x0_building_height.cpp)
64+
6365
## 6x2 Constant Acceleration Dynamic Model Filter
6466

65-
Example from the [2-dimension vehicle location, velocity, and acceleration vehicle estimation](sample/kf_6x2x0_vehicle_location.cpp) sample. Six estimated states and two observed outputs filter.
67+
Example from the [2-dimension vehicle location, velocity, and acceleration vehicle estimation](https://francoiscarouge.github.io/Kalman/kf_6x2x0_vehicle_location_8cpp-example.xhtml) sample. Six estimated states and two observed outputs filter.
6668

6769
```cpp
6870
using kalman = kalman<vector<double, 6>, vector<double, 2>>;
@@ -96,9 +98,11 @@ filter.predict();
9698
filter.update(-375.93, 301.78);
9799
```
98100
101+
[full sample code](sample/kf_6x2x0_vehicle_location.cpp)
102+
99103
## 4x1 Non-Linear Dynamic Model Extended Filter
100104
101-
Example from the [thermal, current of warm air, strength, radius, and location estimation](sample/ekf_4x1x0_soaring.cpp) sample. Four estimated states and one observed output extended filter with two additional prediction arguments and two additional update arguments.
105+
Example from the [thermal, current of warm air, strength, radius, and location estimation](https://francoiscarouge.github.io/Kalman/ekf_4x1x0_soaring_8cpp-example.xhtml) sample. Four estimated states and one observed output extended filter with two additional prediction arguments and two additional update arguments.
102106
103107
```cpp
104108
using kalman = kalman<vector<float, 4>, float, void, std::tuple<float, float>,
@@ -143,6 +147,8 @@ filter.predict(drift_x, drift_y);
143147
filter.update(position_x, position_y, variometer);
144148
```
145149

150+
[full sample code](sample/ekf_4x1x0_soaring.cpp)
151+
146152
## Other Examples
147153

148154
- 1x1 constant system dynamic model filter of the [temperature of a liquid in a tank](sample/kf_1x1x0_building_height.cpp).

0 commit comments

Comments
 (0)