solveTranspose method

Matrix<double> solveTranspose(
  1. Matrix<num> b
)

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'.

Implementation

Matrix<double> solveTranspose(Matrix<num> b) =>
    transposed.solve(b.transposed).transposed;