Hi,
I defined a matrix structure in C using
typedef double mymatrix[30][30][10];
so now I define an array of them;
mymatrix AA[10];
now I tried to access, for a given matrix, the element (i,j,k), so I tried it for AA[5] using
AA[5][i][j][k] = 234.0;
is this the right way?
Thanks