Navigation
Unreal Engine C++ API Reference > Runtime > Chaos > Chaos
References
Module | Chaos |
Header | /Engine/Source/Runtime/Experimental/Chaos/Public/Chaos/DenseMatrix.h |
Include | #include "Chaos/DenseMatrix.h" |
Syntax
class FDenseMatrixSolver
Remarks
Methods to solves sets of Linear equations stored as AX = B where A is an NxN matrix, and X.B are Nx1 column vectors.
Functions
Type | Name | Description | |
---|---|---|---|
![]() ![]() |
bool | CholeskyFactorize
(
TDenseMatrix< T_E >& A |
Overwrite A with its Cholesky Factor (A must be Positive Definite). |
![]() ![]() |
void | SolveCholeskyFactorized
(
const TDenseMatrix< T_EA >& G, |
This solves AX = B, where A is positive definite and has been Cholesky Factorized to produce G, where A = GGt, G is lower triangular. |
![]() ![]() |
bool | SolvePositiveDefinite
(
const TDenseMatrix< T_EA >& A, |
Solve AX = B, for positive-definite NxN matrix A, and Nx1 column vectors B and X. |