Read scientific formatted numbers from txt
问题 I would like to read and store scientific formatted numbers from a txt file, which is formatted and the numbers are separated by tabulator. This is what I have so far: IMPLICIT NONE REAL,ALLOCATABLE,DIMENSION(2) :: data(:,:) INTEGER :: row,column INTEGER :: j,i CHARACTER(len=30) :: filename CHARACTER(len=30) :: format filename='data.txt' open(86,file=filename,err=10) write(*,*)'open data file' read(86, *) row read(86, *) column allocate(data(row,column)) format='(ES14.7)' do i=1,row read(86