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: Algs4NetAssembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic 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