26 Nov 2009 11:51
#5440
How to read any specific column from an external file having several columns?
For example, I can read all the three columns by following command:
DO i = 1, n
READ (3,*,IOSTAT=ierr) x(i), y(i), z(i)
END DO
But I understand this wastes the memory if I need only one column, say y(i) or z(i).
Thanks in advance!