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: Algs4NetAssembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic 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
ExceptionsException | Condition |
---|
ArgumentException | if the dimensions disagree, i.e.,
the length of b does not equal M |
See Also