SolverExtension<T extends num> extension
- on
-
- Matrix<
T>
- Matrix<
Properties
Methods
-
solve(
Matrix< num> b) → Matrix<double> -
Returns the solution
x
ofA * x = B
, whereA
is this Matrix andb
is the argument to the function. -
solveTranspose(
Matrix< num> b) → Matrix<double> -
Returns the solution
x
ofx * A = B
, whereA
is this Matrix andb
is the argument to the function. This is equivalent to solvingA' * x' = B'
.