Cholesky Structure

Represents the result of a Cholesky decomposition.

Definition

Namespace: Austra.Library
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.5.0+d1268756e036101f601080f153b3997e72fc912d
C#
public readonly struct Cholesky : IFormattable
Inheritance
Object    ValueType    Cholesky
Implements
IFormattable

Remarks

Initializes a Cholesky decomposition.

Constructors

CholeskyRepresents the result of a Cholesky decomposition.

Properties

LGets the Cholesky lower triangular matrix.

Methods

DeterminantGets the determinant of the underlying matrix.
EqualsIndicates whether this instance and a specified object are equal.
(Inherited from ValueType)
GetHashCodeReturns the hash code for this instance.
(Inherited from ValueType)
GetTypeGets the Type of the current instance.
(Inherited from Object)
Solve(DVector)Solves the equation Ax = b for x.
Solve(Matrix)Solves the equation AX = B for the matrix X.
Solve(DVector, DVector)Solves the equation Ax = b for x.
Solve(Matrix, Matrix)Solves the equation AX = B for the matrix X.
ToStringGets a textual representation of this decomposition.
(Overrides ValueTypeToString)
ToString(String, IFormatProvider)Gets a textual representation of this decomposition.

See Also