mDet.c File Reference
#include <stdio.h>
#include <math.h>
#include <AR/matrix.h>
Go to the source code of this file.
Defines |
#define | MATRIX(name, x, y, width) ( *(name + (width) * (x) + (y)) ) |
Functions |
double | arMatrixDet (ARMat *m) |
| compute determinant of a matrix.
|
static double | mdet (double *ap, int dimen, int rowa) |
Define Documentation
#define MATRIX |
( |
name, |
|
|
x, |
|
|
y, |
|
|
width |
|
) |
( *(name + (width) * (x) + (y)) ) |
Function Documentation
double arMatrixDet |
( |
ARMat * |
m |
) |
|
compute determinant of a matrix.
Compute the determinant of a matrix.
- Parameters:
-
- Returns:
- the computed determinant
Definition at line 20 of file mDet.c.
static double mdet |
( |
double * |
ap, |
|
|
int |
dimen, |
|
|
int |
rowa | |
|
) |
| | [static] |