Since 4/14/2012 3:16:22 AM, baf has written 7 articles and participated in 56 conversations. baf signature: baf
baf's articles:
Items(7) /1
interesting article on Fortran1143 (5/3/2011 11:19:53 PM) comp.lang.fortran Just stumbled onto a very interesting article on Fortran on the IBM website. Lots of nice historical information. http://www.ibm.com/ibm100/us/en/icons/fortran/?lnk=ibmhpls2/corp/centennial/Icons_of_progress... baf
New build of 32-bit windows (mingw) gfortran (4.6)4699 (5/29/2010 4:51:24 AM) comp.lang.fortran Thanks to FX's old build scripts, a more recent 32-bit version of
gfortran for windows (mingw) is available. This version was built from
the current development (what will eventually be version 4.6.0) sour... baf
parameter initialization expressions22123 (3/11/2010 8:41:09 PM) comp.lang.fortran Why does the following program produce 0.5 for c and 0 for d?
program testdp
implicit none
integer, parameter::dp=selected_real_kind(14)
real(dp),parameter::a=1_dp,b=2_dp,c=a/b,d=1_dp/2_dp
write(... baf
intrinsic function optional argument4111 (2/24/2010 4:45:40 PM) comp.lang.fortran Assuming that two arguments are passed to the sum intrinsic, how does
the compiler sort out whether the second argument is dim or mask? Does
it just look at the type (integer vs logical)?
Is it possible t... baf
Fortran 2003 interoperability with C tutorial?163 (8/7/2007 7:25:44 PM) comp.lang.fortran I am interested in getting a better understanding of how to effectively use the interoperability with C features in Fortran 2003. My current particular interest is is accessing C based database API routines.... baf
gfortran install on PCC OSX555 (12/5/2006 6:06:42 AM) comp.lang.fortran Having exhausted all leads via google and the gfortran wiki, does anyone here have any clue what environment variable setting might fix the following loader error when compiling a Fortran program with the lat... baf
Situation from outside by newbie1858 (9/4/2011 1:09:30 AM) comp.lang.fortran Anyone looking for Fortran may be directed here, but right now I count 1 single fortran post for 90 other offers, mainly photos and pills. Is it not tiime to get together as "professionals" - or at least oldie... tbwright1(218)
College use of fortran?2254 (9/10/2011 2:50:30 PM) comp.lang.fortran If I canvased colleges around the USA for the producer (Windows, not linux) of fortran they use, what's the most likely one I would find in use? Microsoft, Intel, ...? ... wolftracks(235)
Recommend an ODE integrator?3167 (10/18/2011 2:19:51 PM) comp.lang.fortran Hello, I hope this question is not too off-topic. Can someone recommend an ODE integration method that might out-perform Runge-Kutta 4 for a simple N-body simulation? I strongly prefer methods that are easy... daniel8127(276)
Missing DLL/gfortran4190 (12/2/2011 5:22:30 PM) comp.lang.fortran I received the following query from somebody. Is there a way to statically link so that the .exe will run on a Windows system without gcc? Is there a way to do it in Code::Blocks? Thanks. ====================... walt739(18)
I donot know install and run Fortran program4192 (2/17/2012 3:12:07 AM) comp.lang.fortran I nistall one copy of gfortran into C:\gfortran, I check the PATH, it is set to C:\gfortran\bin; then I compose a fortran file named hello.f, it is content is Program Hello Print *, "Hello World!" End Progr... gearss8888(31)
unformatted I/O21145 (2/22/2012 1:40:06 PM) comp.lang.fortran Hi consider the following example. .... real(wp), dimension(10,10) :: nt open(55,file='nt.unformatted',form='unformatted',iostat=err,action='write') write(55) nt close(55) open(55,file='nt.unformatted',for... no.spam.address(65)
please try this program5554 (2/25/2012 6:38:05 AM) comp.lang.fortran I am interested in knowing what the following program prints using various compilers. Please try it and let me know which compiler you are using and what the result is. Oracle Solaris Studio Fortran produces ... robert.corbett(96)
any one written finite elements programs in Fortran here?11174 (3/4/2012 7:32:37 AM) comp.lang.fortran Hello; If someone has experience in writing Finite elements in Fortran, could comment on this statement I saw in this paper? www.math.mcmaster.ca/~bprotas/MATH745b/matlab_fem.pdf in section 2: "A simple two... Nasser
Intel Fortran "library not found"8243 (4/23/2012 6:47:21 PM) comp.lang.fortran Hi All,
Is there a forum for Intel Fortran (ifort) specific questions? The problem I'm having is that after upgrading two Macs to Mac OS X 10.7.3 (one from 10.5.8, the other from 10.6.8), when I use the ifor... jomarbueyes(182)
archive object not work, please help3237 (9/1/2012 1:14:50 PM) comp.lang.fortran Hi there,
There is a project with source file in 3 different directory. I use
gfortran to compile them.
project/module
project/interface
project/sub
in project/module and project/interface director... jszhao(77)