Click or drag to resize

ISolverT Interface

Classes that solves a system of linear equations, AX = B.

Namespace: Altaxo.Calc.LinearAlgebra.Factorization
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public interface ISolver<T>
where T : struct, new(), IEquatable<T>, IFormattable

Type Parameters

T
Supported data types are double, single, Altaxo.Calc.LinearAlgebra.Complex, and Altaxo.Calc.LinearAlgebra.Complex32.

The ISolverT type exposes the following members.

Methods
 NameDescription
Public methodSolve(MatrixT) Solves a system of linear equations, AX = B.
Public methodSolve(VectorT) Solves a system of linear equations, Ax = b
Public methodSolve(MatrixT, MatrixT) Solves a system of linear equations, AX = B.
Public methodSolve(VectorT, VectorT) Solves a system of linear equations, Ax = b.
Top
See Also