Since 5/3/2012 12:17:10 AM, jdujicREMOVE has written 2 articles and participated in 151 conversations. jdujicREMOVE signature: jdujicREMOVE
jdujicREMOVE's articles:
Items(2) /1
A Least Squares Problem1298 (9/30/2003 10:59:32 AM) comp.lang.fortran I'm trying to solve a least-squares problem: min{(Ax+b)(Ax+b)'} (1) whose explicit solution is: x = (A'*A)^-1 * A * b (2) Matrix A has form, e.g.: 1 0 0 0 1 -... Jugoslav
Re: Can PL/I translate n = n+1 ? #3656 (7/8/2003 8:09:21 AM) comp.lang.fortran Sorry for inconvenience. This message is just a test how various newsreaders align messages without reference (Re:) attribute in the header, but with title identical to an existing one. -- Jugoslav _______... Jugoslav
. A Dif.EXE program .4946 (2/4/2004 12:02:49 PM) comp.os.linux.advocacy Here is a Dif.EXE program that I recently wrote : http://www.NCPlus.NET/~jeff-relf/Dif.EXE It compares two files via the command line , e.g. : C:\Some_Dir\Dif.exe \Dir1\Games.CPP Dir2\Games.CPP Source ... me4(18696)
INTENT(IN OUT)1460 (2/4/2004 7:23:28 PM) comp.lang.fortran When will adding INTENT(IN OUT) to the declaration of a procedure argument in working Fortran 77 code make it illegal Fortran 95 code or change its output? The following program does not compile (correctly so)... beliavsky(2207)
Segmentation fault #31090 (2/5/2004 2:25:49 PM) comp.lang.fortran Hi, sorry for poor english :/ Im using fortran 77 and my homework is to create database for someones other program. I think my database is allright but there is error when we run main program which uses my dat... leo_pardo(2)
Fortran vs. C++ : Which is best to choose now i11096 (2/5/2004 4:20:41 PM) comp.lang.fortran Does anyone have suggestions on how to locate info. on which is being taught more in Computer Science and Engineering programs: Fortran or C++? This question concerns trying to pick which language will still b... pmaloney(1)
Legality of USE to swap names656 (2/6/2004 11:08:43 AM) comp.lang.fortran Is this code legal ? MODULE mmm integer yyy real zzz END MODULE mmm subroutine sub2 USE mmm, ONLY : yyy=>zzz,zzz=>yyy zzz = 111 yyy = 999 end subroutine sub2 The crucial issue here is th... jcownie(14)
xlf / nag / ifort / pgf90 vs g95 / sun f90 / ifc 7.1560 (2/6/2004 5:46:25 PM) comp.lang.fortran compilers seem to belong to one of the two camps by either compiling or rejecting this code (complaining about data%array(:)=0). What is the real answer here ? Joost MODULE test TYPE data_type INTEGER, ... jv244(405)
Dynamic "PARAMETER" statement453 (2/10/2004 3:42:28 AM) comp.lang.fortran Hi, Is it possible input a value (at run time) for a variable and then ensure that value of the variable can never changed....like a variable with a PARAMETER attribute. There are a set of variables in the cod... arimail77(6)
GUI without resource files956 (2/11/2004 11:36:53 AM) comp.lang.fortran As I have a legacy application with screens defined in text files for full implementation by CALLS only, I was wondering how easy it was to write a Fortran GUI system which builds its screens *at run time* from... richard.dell(8)
passing file unit numbers to DLL functions1974 (2/11/2004 3:02:04 PM) comp.lang.fortran Dear all, I'm a new user of Digital Visual Fortran. I hail from Finite Element background. So my knowledge in programming is very limited. I'm stuck up with a silly problem. I'm dealing with some pretty old f... sreelal2244(3)