Fortran program to list file types030 (1/2/2004 4:59:25 PM) Below is a simple Fortran 90 program to list the # of various types of files in a directory. After creating an executable "xdir.exe", the command "dir /b | xdir.exe" on Windows or "ls | xdir.exe" on Unix gives ... beliavsky(2207)
Lahey 6.2 vs Intel 5.0 module compilation: Who is right?1438 (12/30/2003 12:20:28 AM) I'm trying to use two different generic names here. It compiles Ok under Intel 5.0.1 Build 010730D0. while Lahey 6.20a generates error, protesting for the presence of the second INTERFACE. Actually this same c... migdalas(58)
HOWTO: export a module procedure039 (12/31/2003 9:02:36 PM) Hi, I intended to use a code like this in a dynamic library, but CVF 6.6.B export only last function and IF7.1 doesnt compile at all. what's wrong? MODULE UN_MOD ! INTERFACE DUP MODULE PROCEDURE dup1... someone15(435)
speed and compiler227 (12/31/2003 7:53:44 PM) Sorry for my bad english. For my reseach i use Intel Fortran Compiler 7.1 (on debian GNU/Linux), and Compaq Visual Fortran 6.6. The same code (is a genetic algorithm) compiled without optimization or debug fl... ambaraba(1)
PL/I CAN 23335 (12/30/2003 6:08:43 AM) > 23. CANT get string AND #chars from keyboard with same function. MISLEADING. PL/I DOES IT WITH ONE SIMPLE STATEMENT. > ! ------------------------ > program get_string > integer,external :: getstrq... robin_v4(769)
PL/I CAN 14025 (12/31/2003 7:56:07 AM) > 14. CANT provide generic matrix function support for ALL operations shown > with matching outputs. FALSE. THIS HAS BEEN DEMONSTRATED TO FRANK TWICE BEFORE, IN TWO VERSIONS. demo_SOME_matrix_operations: ... robin_v4(769)
PL/I CAN 18243 (12/30/2003 6:07:36 AM) > 18. CANT find last word index in trailing blank text by 2 methods, > 1. loop 2. PL/I string function FALSE. i = searchr(trim(s), ' ')+1; gives the index to the right-most ... robin_v4(769)
Re: Challenge 4 (matrix diagonal)250 (12/30/2003 5:58:57 AM) "David Frank" writes: > > Perhaps as a observer with obvious Fortran skills you can offer > an opinion whether the summary documented in reverse order 30:1 > reflects a accurate asses... robin_v4(769)
PL/I CAN 16134 (12/30/2003 6:06:21 AM) > 16. CANT output bitfield DIRECTLY from integer value in 1 statement FALSE. FRANK WAS SHOWN THIS A WEEK OR SO AGO. PUT (SUBSTR(VALUE, M, N)); The corresponding declaration is: DCL VALUE FIXED BINARY (31) ... robin_v4(769)
PL/I CAN 11130 (12/30/2003 6:05:05 AM) > 11. CANT classify record's text values using decode error handlers FALSE. AND FRANK KNOWS IT. HE SAW THE PL/I EQUIVALENT WEEKS AGO. REC: PROC OPTIONS (MAIN); DCL Value char (12); on convers... robin_v4(769)