gate II I feel very optimistic today that a lot of hard work is beginning to pay off. For me today, this revolves around this program: $ gfortran -Wall -Wextra judy1.f90 -o out.exe $ ./out.exe rough opening is 36.000000 encasing is 2.5000000 finished opening is 33.500000 left_gap is 0.50000000... 26 Jul 2010 21:34
what memory gets used? The following program works using intel fortran. But what bit of the 2d array 'arr' gets used in each in each invocation to fill? program sections real, allocatable, dimension(:,:),target :: arr real,pointer,dimension(:,:) :: arrptr allocate(arr(900,900)) arr = 0 arrptr=>arr(1:480,1:480) call fill(480,48... 17 Jul 2010 16:18
question on ** operator In a**b are there any restrictions on the data types of a and b - or will the language handle all numeric cases? Thanks. ... 17 Jul 2010 13:02
WORK WITH INTERNET ONLINE JOBS - EARN $19,000 MONTHLY WORK WITH INTERNET ONLINE JOBS - EARN $19,000 MONTHLY Start Earning At - http://earn-200dollar-perday.weebly.com/ ... 16 Jul 2010 01:14
administrator of this comp.lang.fortran Hi where can I contact the administrator of this group?...I'd like to remove my email address from posts... Thanks ... 15 Jul 2010 17:37
creating shared libraries from Fortran code I have a problem with a simple shared library created from a Fortran subroutine. Below is a simple example: testfun.f90: -------------------------------------------------------------- subroutine testfun (n, v, x, y) integer, intent(in) :: n double precision, intent(in) :: x(n), v double precision, inte... 15 Jul 2010 16:30
creating shared library from Fortran I have a problem with a simple shared library created from a Fortran subroutine. Below is a simple example: testfun.f90: -------------------------------------------------------------- subroutine testfun (n, v, x, y) integer, intent(in) :: n, v double precision, intent(in) :: x(n) double precision, inte... 15 Jul 2010 10:56
Deallocate all I'm supporting a giant legacy app that allocates memory in lots of places. It sure would be handy to have a "deallocate all" function. Does any version of fortran have such a thing? ... 19 Jul 2010 05:53
Functions with side effects Please consider the following program. module foo implicit none integer :: n = 0 contains integer function f(k) integer, intent(in) :: k f = k n = n + 1 end function f end module foo program main use foo implicit none print *,f(3) + f(3) print *,n end program main Is a... 3 Aug 2010 21:19 |