Sign up to request clarification or add additional context in comments.
Comments
1
typedef float array_of_3_floats[3];
array_of_3_floats *d_i; /* what you have now */
array_of_3_floats d_ii[NMAX]; /* what I think you want */
array_of_3_floats (*d_iii)[NMAX]; /* maybe what you want */