SolverExtension<T extends num> extension

on

Properties

det double

Available on Matrix<T>, provided by the SolverExtension extension

Returns the determinant of this Matrix.
no setter
inverse Matrix<double>

Available on Matrix<T>, provided by the SolverExtension extension

Returns the inverse if this Matrix is square, return the pseudo-inverse otherwise.
no setter

Methods

solve(Matrix<num> b) Matrix<double>

Available on Matrix<T>, provided by the SolverExtension extension

Returns the solution x of A * x = B, where A is this Matrix and b is the argument to the function.
solveTranspose(Matrix<num> b) Matrix<double>

Available on Matrix<T>, provided by the SolverExtension extension

Returns the solution x of x * A = B, where A is this Matrix and b is the argument to the function. This is equivalent to solving A' * x' = B'.