diff options
-rw-r--r-- | src/iemmatrix.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/iemmatrix.h b/src/iemmatrix.h index 87f68d2..6d7acea 100644 --- a/src/iemmatrix.h +++ b/src/iemmatrix.h @@ -194,4 +194,9 @@ t_matrixfloat*mtx_doTranspose(t_matrixfloat*output, int row, int col); /* multiply matrix A=[rowA*colA] with matrix B=[rowB*colB]; C=A*B; colA=rowB=colArowB */ t_matrixfloat*mtx_doMultiply(int rowA, t_matrixfloat*A, int colArowB, t_matrixfloat*B, int colB); + +/* for debugging purposes */ +#define MARK startpost("MARK[%s:%d@%s]", __FILE__, __LINE__, __FUNCTION__), post + + #endif |