diff --git a/wpimath/src/main/java/edu/wpi/first/math/Matrix.java b/wpimath/src/main/java/edu/wpi/first/math/Matrix.java index 7ffe29785a..0676784d72 100644 --- a/wpimath/src/main/java/edu/wpi/first/math/Matrix.java +++ b/wpimath/src/main/java/edu/wpi/first/math/Matrix.java @@ -707,8 +707,8 @@ public class Matrix { /** * Performs an inplace Cholesky rank update (or downdate). * - *

If this matrix contains L where A = LL before the update, it will contain L - * where LL = A + σvv after the update. + *

If this matrix contains L where A = LLᵀ before the update, it will contain L where LLᵀ = A + + * σvvᵀ after the update. * * @param v Vector to use for the update. * @param sigma Sigma to use for the update.