Navigation
API > API/Runtime > API/Runtime/Chaos > API/Runtime/Chaos/FDenseMatrixSolver
Description
This solves AX = B, where A is positive definite and has been Cholesky Factorized to produce G, where A = GGt, G is lower triangular.
This is a helper method for SolvePositiveDefinite, or useful if you need to reuse the Cholesky Factor and therefore calculated it yourself.
| Name | SolveCholeskyFactorized |
| Type | function |
| Header File | /Engine/Source/Runtime/Experimental/Chaos/Public/Chaos/DenseMatrix.h |
| Include Path | #include "Chaos/DenseMatrix.h" |
template<int32 T_EA, int32 T_EB, int32 T_EX>
static void SolveCholeskyFactorized
(
const TDenseMatrix < T_EA > & G,
const TDenseMatrix < T_EB > & B,
TDenseMatrix < T_EX > & X
)
See Also
- SolvePositiveDefinite