I have a text data file including a lot of double data set as below:
the dta are separated by 3 spaces.
x x x x x
x x x x x
.
.
.
x x x
I want to read these data line by line and from left to right, and put them in a 3D array of size:76*150*140
for( int k=0;k<139;k++)
{
for(int j=0;j<150;j++)
{
for(int i=0;i<75:i++)
{
....
}
}
}