|
Inv
Compute the multiplicative inverse of a square invertible matrix by the Jordan-Gauss method.
matrix matrix::Inv() |
Return Value
Multiplicative inverse of the matrix.
Note
The product of the original matrix and the inverse matrix is the identity matrix.
If at least one matrix row or column is zero, the inverse matrix cannot be obtained.
If two or more matrix rows or columns are linearly dependent, the inverse matrix cannot be obtained.
Example
int TestInverse(const int size_m)
|