#include <stdio.h>
#include <math.h>
#include <AR/matrix.h>
Go to the source code of this file.
Functions | |
int | arMatrixInv (ARMat *dest, ARMat *source) |
inverse a matrix. |
int arMatrixInv | ( | ARMat * | dest, |
ARMat * | source | ||
) |
inverse a matrix.
inverse a matrix and copy the result in a new one (the source matrix is unmodified). the destination matrix must be allocated. the source matrix need to be a square matrix.
dest | result matrix of the inverse operation |
source | source matrix |
Definition at line 16 of file lib/SRC/AR/mInv.c.