mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-30 02:31:44 +00:00
[wpimath] Fix argument order in UKF docs (NFC) (#3147)
This commit is contained in:
@@ -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"})
|
||||
|
||||
@@ -293,10 +293,10 @@ class UnscentedKalmanFilter {
|
||||
* @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.
|
||||
*/
|
||||
template <int Rows>
|
||||
|
||||
Reference in New Issue
Block a user