A file consists out of (x,y,z) data and I need the z-values arranged like this:
{{z[1],z[2],...z[idimx]},{z[idimx+1],z[idimx+2],...z[idimx*2]},{....}}
With
y=data[[All,2]]; z = data[[All, 3]];
iall=Length[z];
idimy=Length@Position[y,0];
idimx=iall/iy;
I get the dimensions of the array: {idimx,idimy}. But how can I now arrange it's elements? Thanks a lot.

Partition? – b.gatessucks Sep 12 '12 at 16:54