Alternatives to inv() in Julia

Hi, I wanted to ask if there more optimal way w.r.t to Performance to find the inverse of a matrix than inv() from Linear Algebra package

You might have a look at the discussion here:

5 Likes

The first question is why do you need the inverse to begin with?

Just was calculating transformation matrices for which i had to invert the system to solve

Could you just do matrix division instead of calculating the inverse? That would be usually preferred and more stable.

2 Likes