Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. manueleo

    Calling variables from subroutines

    Hi, I have fortran program, which has many subroutines. If one of these subroutines, functionB, gets a array variable, called A, from the calling function, functionA, does array A have to be assigned some value before being referenced by functionB? In order words, array A is allocated, but it...
  2. manueleo

    FORTRAN compilation

    Hello, I have a FORTRAN code that I want to compile using F90 compiler. However, when I enter the unix command: f90 ./code.f -o ./code.out It would give me prompt saying that absoft license has failed, or something. I remember that I could enter some unix keyword that ends with 'soft' in order...
  3. manueleo

    WRITE statement debug

    Help !!! Could any one tell if the write statement below is correct write(1) nmax write(1) ( ( ni(n), nj(n), 1 ), n=1,nmax ) do 10 n = 1, nmax write(1) ( ( x(i,j,n), i=1,ni(n) ), j=1,nj(n) ), & ( ( y(i,j,n), i=1,ni(n) ), j=1,nj(n) ), & ( ( z(i,j,n), i=1,ni(n) ), j=1,nj(n) ) 10 continue I try...

Part and Inventory Search

Back
Top