10-08-2012 10:08 AM
Hey everybody,
i have generated a dynamic Matrix, like this
double **matrix;
matrix = malloc(8*sizeof(double*));
for(i=0;i<8;i++)
{
matrix[i] = malloc(8*sizeof(double));
}
MatrixMul(matrix,something,8,8,8,result);
it says my matrix size is to small. can anybody help me?
10-09-2012 05:36 AM
10-09-2012 05:59 AM
Hello Duffy,
it did help me to learn that the matrices of the Advanced Analysis Library require one-dimensional arrays. Unfortunately, this important hint is not mentioned in the help...