Namespaces

Types

Type CholeskyDecomposition

Namespace MathNet.Numerics.LinearAlgebra

Methods

Properties

Public instance methods

bool Equals(object obj)

Parameters
return bool
object obj

int GetHashCode()

Parameters
return int

Matrix GetL()

Return triangular factor.
Parameters
return Matrix

Type GetType()

Parameters
return Type

Vector Solve(Vector b)

Solve A*x = b
Parameters
return Vector
Vector b A Vector with a dimension as high as the number of rows of A.

Matrix Solve(Matrix B)

Solve A*X = B
Parameters
return Matrix
Matrix B A Matrix with as many rows as A and any number of columns.

string ToString()

Parameters
return string

Public properties

bool IsSPD get;

Is the matrix symmetric and positive definite?
return bool

Matrix TriangularFactor get;

Decomposition Triangular Factor Matrix (L).
return Matrix