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...
xwb
Hmm, I think you may be right about it only showing me the first 100 elements. If I define NP as any number less then 100 it shows up correctly in the debugger. I am using the Abisoft fortran editior and the bundled Fx2 Debugger. I need to see if there is a way to force it to show all of...
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.