Hy list,
I've to declare a 3D matrix in C . I tried with that code:
double ***mat;
mat=(double***) G_malloc(ndimen sion*(sizeof(do uble));
but the program send me a run time error.
could anybody help me?
thanks
gianluca
I've to declare a 3D matrix in C . I tried with that code:
double ***mat;
mat=(double***) G_malloc(ndimen sion*(sizeof(do uble));
but the program send me a run time error.
could anybody help me?
thanks
gianluca
Comment