for (i=0, i<imax, i++)
{
// ...
Array< complex<float>, 3 > matrix(x,y,z);
// x,y,z are large and vary in each loop
// ...
// matrix <=== values for each element assigned
// ...
// now want to write "matrix" in a single binary file.
// later, this matrix can be read directly from the file.
// HOW??
}
Thanks for your help.
Apple