here is the piece of code that seems to be generaing an error on comile in Compaq Visual Fortran...
-------------
COMPLEX*16 A(NDIM,NDIM),PIVOT(600),AMAX,T,SWAP,U,DETERM
INTEGER IPIVOT(600),INDEX(600,2)
REAL*8 COND,TEMP,ALPHA(600),SUMAXA,SUMROW
IMPLICIT REAL*8 (A-H,O-Z)
--------------
I get this error message on compile:
Error: This IMPLICIT statement is not positioned correctly within the scoping unit.
IMPLICIT REAL*8(A-H,O-Z)
I'm completely new at Fortran: what do i need to fix here?
-------------
COMPLEX*16 A(NDIM,NDIM),PIVOT(600),AMAX,T,SWAP,U,DETERM
INTEGER IPIVOT(600),INDEX(600,2)
REAL*8 COND,TEMP,ALPHA(600),SUMAXA,SUMROW
IMPLICIT REAL*8 (A-H,O-Z)
--------------
I get this error message on compile:
Error: This IMPLICIT statement is not positioned correctly within the scoping unit.
IMPLICIT REAL*8(A-H,O-Z)
I'm completely new at Fortran: what do i need to fix here?