I have been given the task converting some Fortran 77 code. I have a main program that calls a subroutine like so:
CALL GOD1D(GASP(IFPTN),...)
Now, GASP is a large string array, so it should be passing a single element of position IFPTN, which is a string. The GOD1D subroutine looks like...
I have been given the task converting some Fortran 77 code and I am having problems understanding the way the arrays are dimensioned. I have some code like this:
IMPLICIT REAL*4(A-H,M,O-Z)
PARAMETER (NP = 2000, NL = 500, NSAMP = 1000)
PARAMETER (N1 = 400, N2 = 10)
DIMENSION...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.