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

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

Parameters

A
Type: SystemDouble
A the M-by-N constraint matrix
b
Type: SystemDouble
the length M right-hand-side vector
Exceptions
ExceptionCondition
ArgumentExceptionif the dimensions disagree, i.e., the length of b does not equal M
See Also