Some examples on how to use these arrays:
farray fa1(3,3); // creates a 2-dimensional 3x3 array
fa1(0,1)=5.7; // assigns 5.7 to the second element in the firs row
farray fa2(3,3); // creates another 2-dimensional 3x3 array
fa1+fa2; // returns the element-wise sum of the two arrays
fa1.redim(1,2,3); // resizes fa1 to a 3-dimensional 1x2x3 array
1.5.1