文件名称:matrix_inverse
介绍说明--下载内容均来自于网络,请自行研究使用
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.
-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.
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.
-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.
(系统自动生成,下载前可以参看下载内容)
下载文件列表
matrix_inverse.c