SolverExtension<T extends num> extension

on

Properties

det double
Returns the determinant of this Matrix.
no setter
inverse Matrix<double>
Returns the inverse if this Matrix is square, return the pseudo-inverse otherwise.
no setter

Methods

solve(Matrix<num> b) Matrix<double>
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>
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'.