C# Class LinearEquationSolver, MeshToys

Datei anzeigen Open project: GameMakersUnion/MeshToys

Public Methods

Method Description
Solve ( float M ) : bool

Computes the solution of a linear equation system.

Method Details

Solve() public static method

Computes the solution of a linear equation system.
public static Solve ( float M ) : bool
M float /// The system of linear equations as an augmented matrix[row, col] where (rows + 1 == cols). /// It will contain the solution in "row canonical form" if the function returns "true". ///
return bool