Click or drag to resize
GaussJordanElimination Constructor
Solves the linear system of equations Ax = B where A is an N-by-N matrix and B is a length N vector.

Namespace: Algs4Net
Assembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public GaussJordanElimination(
	double[][] A,
	double[] b
)

Parameters

A
Type: SystemDouble
the N-by-N constraint matrix
b
Type: SystemDouble
the length N right-hand-side vector
See Also