what I am doing is that I am coverting an array of 9 doubles into a 2D 3x3 Matrix.
However, when I am preparing the output matrix, I want to write directly into the memory (so I won't lose the value after the call of the function).
I know for a simple variable, I can simply put a "&" (ex: double &oValue). What should I do in the case of an array?