You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+9-3
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ Standard formatter specialization provided for representation of the filter stat
48
48
49
49
## 1x1 Constant System Dynamic Model Filter
50
50
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.
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.
66
68
67
69
```cpp
68
70
using kalman = kalman<vector<double, 6>, vector<double, 2>>;
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.
102
106
103
107
```cpp
104
108
using kalman = kalman<vector<float, 4>, float, void, std::tuple<float, float>,
0 commit comments