SolverExtension<T extends num> extension
- on
-
- Matrix<
T>
- Matrix<
Properties
- det → double
-
Available on Matrix<
Returns the determinant of this Matrix.T> , provided by the SolverExtension extensionno setter -
inverse
→ Matrix<
double> -
Available on Matrix<
Returns the inverse if this Matrix is square, return the pseudo-inverse otherwise.T> , provided by the SolverExtension extensionno setter
Methods
-
solve(
Matrix< num> b) → Matrix<double> -
Available on Matrix<
Returns the solutionT> , provided by the SolverExtension extensionx
ofA * x = B
, whereA
is this Matrix andb
is the argument to the function. -
solveTranspose(
Matrix< num> b) → Matrix<double> -
Available on Matrix<
Returns the solutionT> , provided by the SolverExtension extensionx
ofx * A = B
, whereA
is this Matrix andb
is the argument to the function. This is equivalent to solvingA' * x' = B'
.