This function converts a set of matrices into one matrix ina a specific format. For more detailed inctructions, please refer to the documentation.
Example
In Octave:
x = (-10:1:10)';
y = x';
z = x*y;
w = sin(x)*sin(y);
zz = transform (x, y, z, w);
The outputs is zz, which a matrix in the specific format including all the data from x, y, z, and w. The function transform should be used before using the function gsave. This function is not intended for any other purpose other than being used before saving the data into a file using the function gsave.