search for: foobis_

Displaying 1 result from an estimated 1 matches for "foobis_".

Did you mean: foobis
2005 Sep 09
2
A question on R memory management in .Fortran() calls under Windows
...*********************************** SUBROUTINE foo(X,M,N,S) !DEC$ ATTRIBUTES DLLEXPORT,C,REFERENCE,ALIAS:'foo_' :: FOO IMPLICIT NONE integer:: M,N real*8:: X(M,N),S S = sum(X); END SUBROUTINE foo SUBROUTINE foobis(M,N,S) !DEC$ ATTRIBUTES DLLEXPORT,C,REFERENCE,ALIAS:'foobis_' :: FOOBIS IMPLICIT NONE integer:: M,N real*8:: X(M,N),S X = 1; S = sum(X); END SUBROUTINE foobis *** file foo.f90 ends *********************************************************************** Notice that the matrix X is an input argument in foo and an internal variable...