Recent content by Gugga
-
G
Fortran How can I read a 2D character array in Fortran using f90?
So I figured it out... for future reference, depending on the compiler it is possible that won't accept a parameter declaration if it is in parenthesis... so I had declared like this: integer(4), parameter :: (value1=4596, value2=1345) character(1), dimension(value1,value2) :: array instead it...- Gugga
- Post #2
- Forum: Programming and Computer Science
-
G
Fortran How can I read a 2D character array in Fortran using f90?
Hello all, I have some data stored in character*1 array(value,value) apparently the code is in f77, i got the original reading code for the data as a text... I am working in f90, and to the extend of my knowledge (not much in fortran) I can not declare such 2D array as character...- Gugga
- Thread
- Array Fortran
- Replies: 1
- Forum: Programming and Computer Science