http://www.neilstuff.com/guide_to_cpp/notes/Multi%20Dimension%20Arrays%20and%20Pointer%20Pointers.htm
According to this site, I should be able to use the following c
double ** p_stuff; corresponds to an array of pointer to double. double stuff[3][3] doesn't have any pointers - it's a 2D array of double.
double ** p_stuff;
double stuff[3][3]