#include <stdio.h>
#include <math.h>
#include <AR/matrix.h>
Go to the source code of this file.
Functions | |
int | arMatrixMul (ARMat *dest, ARMat *a, ARMat *b) |
Multiply two matrix. |
int arMatrixMul | ( | ARMat * | dest, |
ARMat * | a, | ||
ARMat * | b | ||
) |
Multiply two matrix.
Multiply two matrix and copy the result in another the product is this one : dest = a * b. The destination matrix must be allocated. Matrix a and b need to have the same size (the source matrix is unmodified).
dest | final matrix product |
a | first matrix |
b | second matrix |
Definition at line 16 of file lib/SRC/AR/mMul.c.