[wpimath] Fix argument order in UKF docs (NFC) (#3147)

This commit is contained in:
Tyler Veness
2021-02-01 23:36:32 -08:00
committed by GitHub
parent ba6fe8ff2e
commit 3d44d8f79c
2 changed files with 4 additions and 4 deletions

View File

@@ -363,10 +363,10 @@ public class UnscentedKalmanFilter<States extends Num, Inputs extends Num, Outpu
* @param R Measurement noise covariance matrix.
* @param meanFuncY A function that computes the mean of 2 * States + 1 measurement vectors using
* a given set of weights.
* @param residualFuncX A function that computes the residual of two state vectors (i.e. it
* subtracts them.)
* @param residualFuncY A function that computes the residual of two measurement vectors (i.e. it
* subtracts them.)
* @param residualFuncX A function that computes the residual of two state vectors (i.e. it
* subtracts them.)
* @param addFuncX A function that adds two state vectors.
*/
@SuppressWarnings({"ParameterName", "LocalVariableName"})