forked from mannyray/KalmanFilter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added further documentation for generating-docs/compiling/testing and…
… fixed test
- Loading branch information
Showing
9 changed files
with
29 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# Kalman Filter | ||
|
||
To generate doxygen run `doxygen` in this directory. Copy `png`s from `assets/` into `html/`. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
## | ||
|
||
`cd` into this directory and `g++ <file>` such as `g++ basicExample.cpp` to compile. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
## Tests | ||
To compile tests you need GTest. Run | ||
|
||
``` | ||
$ mkdir build | ||
$ cd build | ||
$ cmake .. | ||
$ make | ||
$./runTests | ||
$./runTests2 | ||
$./runTests3 | ||
$./runTests4 | ||
``` | ||
|
||
- `runTests` tests continuos solvers | ||
- `runTests2` tests `predict` method of discrete Kalman filter and then the update phase method | ||
- `runTests3` compare the output of discrete Kalman filter using three different types for template. Results should all be the same. | ||
- `runTests4` tests 'randomVector' functions |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
# Matlab Kalman Filter | ||
|
||
To generate doxygen run `doxygen` in this directory. Copy from all Kalman filter subdirectories `kalman_subdirectory/examples/*.png` into `Doc/html/assets/kalman_subdirectory/examples/*.png`. |