fast matrix multiplication1873 (1/10/2006 11:13:16 PM) comp.lang.fortran Hi all, I have a question regardin matrix multipllication. In my program I call a subroutine to multiplies to n*n matrices thousands of times SUBROUTINE multi(Nc,m1,m2,mtot) INTEGER i,j,l,Nc ... andreacampera1(1)
formatted output2639 (1/24/2006 2:53:54 PM) comp.lang.fortran Hi! I want to print 15 real values, so I do real, dimension(15) :: r_tmp r_tmp=0 !or sth. usefull write(*,111) r_tmp 111 format (15(F9.6,/)) now I want to print a arbitrary number of numbers so I tried i... s.z.s(21)
New style DO syntax?7837 (4/25/2006 3:33:01 PM) comp.lang.fortran Another simple idea for 'modern' Fortran Standards. It seems fairly obvious, so maybe it has already been proposed and rejected. I think that the DO-loop is the only "block construct" that does not contain t... Joe
The power that is C++2356 (6/12/2006 8:19:55 AM) comp.lang.fortran To a Fortran user this seems rather an involved way of formatting numbers. http://www.devx.com/cplus/10MinuteSolution/31656/0/page/1 ... none10(3395)
Multithreading on Multicore Processors3340 (1/13/2007 11:40:21 AM) comp.lang.fortran Greetings Fortran Fans, I am pleasantly surprised to find an active Fortran group on the net. This is my first post to this group and I am looking for some help regarding multithreading on multicore proces... nobody6(495)
common from fortran77 to fortran 901930 (2/13/2007 11:11:57 AM) comp.lang.fortran Hi all I am working on a project to convert FORTRAN 77 code to FORTRAN 90.The program is huge and contains 60+ subroutines with numerous common statements, can anyone suggest how I convert this common clutter ... sukhbinder.singh(56)
reading lines with trailing white spaces2475 (2/22/2007 7:07:27 AM) comp.lang.fortran I am having very basic problem with reading lines in a file with trailing white spaces. Consider program copy_a_file ! Fortran 90 program to copy a file implicit none integer :: ios integer, parameter... kamaraju1(50)