CVF and Vista1137 (1/30/2007 2:44:45 PM) comp.lang.fortran Does anyone know (having tried it out) whether CVF will run under Vista, either as an upgrade from XP or on a new installation? Many thanks, Mike Metcalf ... michaelmetcalf(810)
nested loop is not working...im new1432 (1/28/2007 7:34:15 AM) comp.lang.fortran "This is what i write in the program: > > PROGRAM RAIN > > USE MSIMSL > REAL MEAN(100000),STDEV(100000),Y(100000) > REAL XMEAN(100000),XSTDEV(100000),R1,T(1000) > REAL X(100000) So valid su... banglows1(17)
integer to char conversion637 (1/24/2007 11:56:46 PM) comp.lang.fortran anybody knows how to convert an integer to the char type? I don't mean the command char(i) and ichar(a), which use ascii I want to convert an integer like '445' into a chain of character "445" so as to be able... heavytull(155)
Multiple declaration support in HP-FORTRAN compiler1229 (1/5/2007 5:02:33 AM) comp.lang.fortran Hello, Following code works fine on HP unix Fortran compiler (HP F90 v3.1) -------------------------------- subroutine hello() integer i, i integer i write (*, *) "hello" return end --------------------------... dgatkal(12)
fortran programs with big RAM requirement998 (1/3/2007 6:30:10 PM) comp.lang.fortran Hi! I've got a very intriguing problem with my Fortran programs once I enlarge the array sizes so that in total the program's need of RAM exceeds 2 GB. There the compiler just sends me errors with something l... ronny.thomale(1)
HELP!How to recover .f file from exsting .o or bin file?1176 (1/2/2007 12:42:48 PM) comp.lang.fortran I must say, I'm a moron, I deleted all my .f files and its baks by accident, now only those .o object file and compiled bin file exists, how can I recover the original .f file? Thanks very much!! I'm in despai... zuying(37)
Save statement2334 (12/14/2006 5:03:36 PM) comp.lang.fortran Consider this code snippet: function foo logical init save init if ( .not. init ) then init = .true. end if return end I think the intention of the code is to enter into the body of the if sta... jdaues(38)
INQUIRE - FORM vs. (UN)FORMATTED1526 (12/8/2006 9:16:17 AM) comp.lang.fortran Hello, I'm trying to understand the FORM, FORMATTED and UNFORMATTED specifiers of INQUIRE. Let's start with FORM: "The scalar-default-char-variable in the FORM= specifier is assigned the value FORMATTED if th... burnus(564)