#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 MATRIX | ( | name, | |
x, | |||
y, | |||
width | |||
) | ( *(name + (width) * (x) + (y)) ) |
Definition at line 16 of file lib/SRC/AR/mDet.c.
double arMatrixDet | ( | ARMat * | m | ) |
compute determinant of a matrix.
Compute the determinant of a matrix.
m | matrix source |
Definition at line 20 of file lib/SRC/AR/mDet.c.
static double mdet | ( | double * | ap, |
int | dimen, | ||
int | rowa | ||
) | [static] |
Definition at line 30 of file lib/SRC/AR/mDet.c.