Click or drag to resize
Accord.NET (logo)

ISolverMatrixDecompositionT Interface

Common interface for matrix decompositions which can be used to solve linear systems of equations.

Namespace:  Accord.Math.Decompositions
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public interface ISolverMatrixDecomposition<T>
where T : struct, new()
Request Example View Source

Type Parameters

T

The ISolverMatrixDecompositionT type exposes the following members.

Methods
  NameDescription
Public methodGetInformationMatrix
Computes (Xt * X)^1 (the inverse of the covariance matrix). This matrix can be used to determine standard errors for the coefficients when solving a linear set of equations through any of the Solve(T) methods.
Public methodInverse
Solves a set of equation systems of type A * X = I.
Public methodReverse
Reverses the decomposition, reconstructing the original matrix X.
Public methodSolve(T)
Solves a set of equation systems of type A * X = B.
Public methodSolve(T)
Solves a set of equation systems of type A * X = B.
Top
See Also