Have data that is coming from Matlab and want to read it into Fortran. Simple example of what I have:
PROGRAM file_read
IMPLICIT NONE
REAL, ALLOCATABLE :: read_matrix(:,:)
INTEGER :: i,j
OPEN(1,FILE = 'data_wanted.prn', ACTION = 'READ', STATUS = 'OLD')
do i = 1,50
do j = 1,25
READ(1,*)...