C# Class YAMP.Numerics.DirectSolver

Abstract base class for any (direct) solver.
Mostra file Open project: FlorianRappl/YAMP

Public Methods

Method Description
Solve ( MatrixValue b ) : MatrixValue

Solves the given system of linear equations for a source vector b.

Method Details

Solve() public abstract method

Solves the given system of linear equations for a source vector b.
public abstract Solve ( MatrixValue b ) : MatrixValue
b YAMP.MatrixValue The vector b in A * x = b.
return YAMP.MatrixValue