How do I get the inverse of a matrix in python? I've implemented it myself, but it's pure python, and I suspect there are faster modules out there to do it.
|
4
|
|
|
|
|
|
You should have a look at numpy if you do matrix manipulation. This is a module mainly written in C, which will be much faster than programming in pure python. Here is an example of how to invert a matrix, and do other matrix manipulation.
You can also have a look at the array module, which is a much more efficient implementation of lists when you have to deal with only one data type. |
||||||
|
|
|
you could calculate the determinant of the matrix which is recursive and then form the adjoined matrix link to a short tutorial http://www.easycalculation.com/matrix/inverse-matrix-tutorial.php i think this only works for square matrices another way of computing these involves gram-schmidt orthogonalization and then transposing the matrix, the transpose of an orthogonalized matrix is its inverse! |
||
|
|
|
|
Make sure you really need to invert the matrix. This is often unnecessary and can be numerically unstable. When most people ask how to invert a matrix, they really want to know how to solve Ax = b where A is a matrix and x and b are vectors. It's more efficient and more accurate to use code that solves the equation Ax = b for x directly than to calculate A inverse then multiply the inverse by B. Even if you need to solve Ax = b for many b values, it's not a good idea to invert A. If you have to solve the system for multiple b values, save the Cholesky factorization of A, but don't invert it. |
||
|
|
|
|
very very needed for our exam thank you |
||
|
|
|
|
If you hate numpy, get out RPy and your local copy of R, and use it instead. (I would also echo to make you you really need to invert the matrix. In R, for example, linalg.solve and the solve() function don't actually do a full inversion, since it is unnecessary.) |
|||
|
|
