#include <stdio.h>
#include <math.h>
#include <malloc.h>
#include <AR/matrix.h>
Go to the source code of this file.
Functions | |
ARMat * | arMatrixAllocMul (ARMat *a, ARMat *b) |
Multiply two matrix with memory allocation. |
ARMat* arMatrixAllocMul | ( | ARMat * | a, |
ARMat * | b | ||
) |
Multiply two matrix with memory allocation.
multiply two matrix and copy the result in a new allocate matrix (the source matrix is unmodified). the product is this one : dest = a * b
a | first matrix |
b | second matrix |
Definition at line 21 of file backup/lib/SRC/AR/mAllocMul.c.