Click or drag to resize

ISolver Interface

Interface for any class that allows to solve a system of linear equations, AX = B.

Namespace:  FinMath.LinearAlgebra.Solvers
Assembly:  FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax
C#
public interface ISolver
Methods
  NameDescription
Public methodSolve(Matrix)
Solves a system of linear equations, AX = B.
Public methodSolve(Vector)
Solves a system of linear equations, Ax = b
Public methodSolve(Matrix, Matrix)
Solves a system of linear equations, AX = B.
Public methodSolve(Vector, Vector)
Solves a system of linear equations, Ax = b.
Top
See Also