Hi,
I have an fortran script to read a binary 3D dataset with dimentions mlon,mlat, and mtot. It works well with the pgf90 compilator. I'm trying to use the compilators gfortran and intel and an error occurs in the following structure
READ(10)dado
DO 100 it =1,MTOT
DO 100 i = 1, MLAT
DO 100 j = 1, MLON
100 CONTINUE
close(10)
Please, could anyone help me to "translate" this structure to something gfortran can deal with?
Thank you for your attention,
I have an fortran script to read a binary 3D dataset with dimentions mlon,mlat, and mtot. It works well with the pgf90 compilator. I'm trying to use the compilators gfortran and intel and an error occurs in the following structure
READ(10)dado
DO 100 it =1,MTOT
DO 100 i = 1, MLAT
DO 100 j = 1, MLON
100 CONTINUE
close(10)
Please, could anyone help me to "translate" this structure to something gfortran can deal with?
Thank you for your attention,