Is there a simple way of reshaping arrays in Java? (From A to B)
From
A =
1 4 7 10
2 5 8 11
3 6 9 12
... to this:
B =
1 3 5 7 9 11
2 4 6 8 10 12
I've looked at the math-lib [NetCDF-Java|http://www.unidata.ucar.edu/software/netcdf-java/], but since special Array-objects are created it's not as flexible as In would want.