Hi,
....
int *n1, b;
float **n2, **n3;
n1= new float [b];
n2= new float *[b];
n3= new float *[b];
for(int j=0;j<b;j++)
{
ge>>n1[j];
n2[j]= new float [n1[j]];
n3[j]= new float [n1[j]];
for(int i=0;i<n[j];i++)
{
ge>>n2[j][i]>>n3[j][i];
}
}
...
I understand the code, it is the indirection and multiple indirection and allocation, right ? I try to translate these codes into Fortran. Thanks



