There are some mathematical algorithms. 更多...
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
函数 | |
int | rinv (double a[], const int n) |
A function to caculate the inverse of the input square matrix. 更多... | |
There are some mathematical algorithms.
在文件 math_algo.c 中定义.
int rinv | ( | double | a[], |
const int | n | ||
) |
A function to caculate the inverse of the input square matrix.
[in,out] | a | The pointer of the input/output square matrix. |
[in] | n | The order of the input/output square matrix. |
0 | No inverse matrix |
1 | Invertible matrix |
在文件 math_algo.c 第 19 行定义.