imsl.linalg.lu_inv

lu_inv(a)

Compute the inverse of a matrix.

Parameters:a ((N,N) array_like) – Square matrix to be inverted.
Returns:The inverse of the matrix a.
Return type:*(N,N) ndarray*

Notes

This function creates a temporary LU() instance and calls method LU.inv() on that instance.