Since 5/3/2012 12:49:06 AM, metcalfm has written 7 articles and participated in 118 conversations. metcalfm signature: metcalfm
metcalfm's articles:
Items(7) /1
Fortran Resources (April, 2004)148 (4/20/2004 9:51:47 AM) comp.lang.fortran ********************************************************************* Information file, on compilers, tools, books, courses, tutorials, and the standard for the Fortran language and its derivatives. This ... Michael
Fortran Resources (February)043 (2/18/2004 8:51:21 AM) comp.lang.fortran ********************************************************************* Information file, on compilers, tools, books, courses, tutorials, and the standard for the Fortran language and its derivatives. This ... Michael
Fortran Resources (January)044 (1/19/2004 10:37:23 AM) comp.lang.fortran ********************************************************************* Information file, on compilers, tools, books, courses, tutorials, and the standard for the Fortran language and its derivatives. This ... Michael
Fortran Resources (December)045 (12/15/2003 7:28:46 PM) comp.lang.fortran ********************************************************************* Information file, on compilers, tools, books, courses, tutorials, and the standard for the Fortran language and its derivatives. This ... Michael
Re: problem compiling with fortran165 (11/27/2003 3:33:45 PM) comp.lang.fortran Your problem is: 1) the code is Fortran 90, so cannot be compiled at all with g77; 2) it is written using the free-form source form that usually has the extension .f90. So try renaming your file as direct.f90... Michael
Fortran Resources (November)046 (11/21/2003 9:47:23 AM) comp.lang.fortran ********************************************************************* Information file, on compilers, tools, books, courses, tutorials, and the standard for the Fortran language and its derivatives. This ... Michael
Fortran Forum (December)355 (11/17/2003 8:45:28 AM) comp.lang.fortran ACM Fortran Forum can be subscribed to without membership of either ACM or SIGPLAN for $10 (plus $10 for expedited air mail outside the USA). Either A) go to the SIGPLAN webpage at http://www.acm.org/sigplan ... Michael
Good Fortran Books1146 (3/1/2004 7:13:24 PM) comp.lang.fortran Hi, I'm currently studying for a PhD in Chemistry, and I've just started using Fortran in my work. The problem is that I don't know how to write. I've been writing C and C++ code for years, so I'm looking for... b.d.allen(2)
Explanation of Cleanscape posting428 (3/5/2004 8:02:28 AM) comp.lang.fortran I posted an article on Thursday morning titled "About Cleanscape Software", but I neglected to explain the relevance of the topic to "comp.lang.fortran". Cleanscape Software is the company that distributes For... esb200(2)
Cannot point to derived type components?849 (4/2/2004 2:49:11 AM) comp.lang.fortran What is the correct form to point to a derived type component(if there is one)? I just want an alias to the component, not a copy of it: real, pointer :: compA compA => same_derived_type%some_component So,... bgeneto1(29)
pls help: INTENT not supported by g77 ?1687 (4/6/2004 10:43:22 AM) comp.lang.fortran Hi all, I use command "g77 -o m.o m.F" to compile a program contains this line: INTEGER, INTENT(IN) :: myid,istep,numprocs then I get errors: ------------------------- cut here -----------------------... st-wong(32)
Intel version 8 Compiler Bug or bad coding?388 (4/25/2004 9:07:08 PM) comp.lang.fortran I am compiling the following code on the Intel v8 compiler under Red Hat Linux. The compiler generates an "internal compiler error" if optimization turns on. /opt/intel/compiler80/bin/ifort -FR -c -O3 Bug_1.f ... junkjunk11(3)
PRIVATE Attribute on the Intel v7 compiler?239 (4/25/2004 9:36:23 PM) comp.lang.fortran Help needed in understand what is wrong with this construct. It consisted of three Modules and one Main Program and compiled with the ifc version 7 Intel compiler. MODULE IO implicit NONE integer :: WHOA ... junkjunk11(3)
Teaching Fortran and Which Compilers948 (4/26/2004 7:31:34 PM) comp.lang.fortran I run a courses in Resource Modelling and Numerical Analytical Methods in the Science Faculty at the University of KwaZulu-Natal in South Africa. I am wanting to purchase a good FORTRAN compiler that can be run... tnova(2)
memory allocation overhead444 (4/28/2004 10:38:28 AM) comp.lang.fortran I am porting a f77 application to f90. One of the most outstanding features of the application is its memory management. Since the f77 standard allows only static memory allocation and vendor specific dynamic m... mmueller1(4)
binary file238 (7/16/2004 3:31:37 PM) comp.lang.fortran Hoe can I read a binary file in fortran and access directly to the "interesting" bytes ? Now I do this: ---------- character(4):: datos ---------- open(unit=1,file=filename,access='direct', status='unknown',for... holepop(5)
Pointer function usage727 (7/18/2004 8:12:56 AM) comp.lang.fortran Hi I was wondering if someone can point me to some example of usage of pointer valued functions. Currently, I am working with the following code : module prog_types ... spammers-go-here2(467)