Click or drag to resize

Cholesky Structure

Represents the result of a Cholesky decomposition.
Inheritance Hierarchy
SystemObject
  SystemValueType
    Austra.LibraryCholesky

Namespace: Austra.Library
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.8.0+e1037fa8802b3ff162e26559d763b73334940b70
Syntax
C#
public readonly struct Cholesky : IFormattable

The Cholesky type exposes the following members.

Constructors
 NameDescription
Public methodCholeskyRepresents the result of a Cholesky decomposition.
Top
Properties
 NameDescription
Public propertyLGets the Cholesky lower triangular matrix.
Top
Methods
 NameDescription
Public methodDeterminantGets the determinant of the underlying matrix.
Public methodEqualsIndicates whether this instance and a specified object are equal.
(Inherited from ValueType)
Public methodGetHashCodeReturns the hash code for this instance.
(Inherited from ValueType)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodSolve(DVector)Solves the equation Ax = b for x.
Public methodSolve(Matrix)Solves the equation AX = B for the matrix X.
Public methodSolve(DVector, DVector)Solves the equation Ax = b for x.
Public methodSolve(Matrix, Matrix)Solves the equation AX = B for the matrix X.
Public methodToStringGets a textual representation of this decomposition.
(Overrides ValueTypeToString)
Public methodToString(String, IFormatProvider)Gets a textual representation of this decomposition.
Top
Remarks
Initializes a Cholesky decomposition.
See Also