浏览代码

Corrected readme.

shkolnick-kun 1 年之前
父节点
当前提交
164c4a53dd
共有 1 个文件被更改,包括 8 次插入5 次删除
  1. 8 5
      README.md

+ 8 - 5
README.md

@@ -11,7 +11,10 @@ There are also libraries for python:
 * [pykalman](https://github.com/pykalman/pykalman).
 
 ## The library
-In our you can find some **Kalman filter** variants:
+Technically speaking all filters in YAFL are adaptive since all of them have at least measurement noice covariance adjustment.
+The term **Adaptive** is used in our docs for **Kalman filter** variants with H-infinity divergence correction.
+
+In YAFL you can find these **Kalman filter** variants:
 
 | Algorithm family | Basic        | Adaptive     | Robust       | Adaptive robust |
 | :--------------- | :----------: | :----------: | :----------: | --------------: |
@@ -31,23 +34,23 @@ where:
 For all **EKF** variants we have **Bierman** and **Joseph** updates.
 For sequential UD-factorized **UKF** only **Bierman** updates have been implemented.
 
-Technically speaking all filters in YAFL are adaptive since all of them have at least measurement noice covariance atadpive adjustment.
+And yes, we [**can actually**](./doc/UsingEKFTricksWithSPKF.pdf) use **EKF** tricks with **UKF**!
 
-### Notes on process and measurement noice covariance adjustments
+## Notes on process and measurement noice covariance adjustments
 We used [this paper](https://arxiv.org/pdf/1702.00884.pdf) to implement optional Q and R adaptive adjustments.
 Here are som notes on our implementation:
 * All filters in this lib have the optional measurement noice covariance adjustment which can be enabled by setting `rff` to a small positive number e.g. `1e-4`.
 * All EKF filters in this lib have the optional process noice covariance adjustment which can be enabled by setting `qff` to a small positive number e.g. `1e-4`.
 * None of UKF filters have the optional process noice covariance adjustment as it leads to filters instability.
 
-And yes, we [**can actually**](./doc/UsingEKFTricksWithSPKF.pdf) use **EKF** tricks with **UKF**!
-
+## Notes on implementation
 The library is written in C and is intended for embedded systems usage:
 * We use static memory allocation
 * We use cache-friendly algorithms when available.
 * Regularization techniques are used when necessary. The code is numerically stable.
 * Depends only on C standard library.
 
+## Using with C
 To use the library you need to:
 * go to our [Releases page](https://github.com/shkolnick-kun/yafl/releases),
 * download and unpack the latest release source code archive,