mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
[wpimath] Fix HTML5 entity (#4420)
Replace ⊤ with \u22a4, since Unicode references are supported but HTML5 entities are not. Should be fixed if JDK is ever moved forward. Co-authored-by: Tyler Veness <calcmogul@gmail.com>
This commit is contained in:
@@ -707,8 +707,8 @@ public class Matrix<R extends Num, C extends Num> {
|
||||
/**
|
||||
* Performs an inplace Cholesky rank update (or downdate).
|
||||
*
|
||||
* <p>If this matrix contains L where A = LL<sup>⊤</sup> before the update, it will contain L
|
||||
* where LL<sup>⊤</sup> = A + σvv<sup>⊤</sup> after the update.
|
||||
* <p>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.
|
||||
|
||||
Reference in New Issue
Block a user