Description: This function calculates the inverse of a square matrix
matrix_inverse(double*Min, double*Mout, int actualsize)
Min : Pointer to Input square Double Matrix
Mout : Pointer to Output (empty) memory space with size of Min
actualsize : The number of rows/columns
Notes:
- the matrix must be invertible
- there s no pivoting of rows or columns, hence,
- accuracy might not be adequate for your needs.
To Search:
File list (Check if you may need any files):
matrix_inverse.c