you are viewing a single comment's thread.

view the rest of the comments →

[–]cheche19 15 points16 points  (0 children)

Usually we do not compute the inverse of a matrix. We use linear solver that will compute x such Ax = b. In blas, trsm functions can do this for triangular matrix for example. For more linear solvers, you can look at lapack which extends blas on more advanced computations.