new_line9118 (8/16/2012 7:53:00 PM) Hi,
what does the standard have to say to the following? This line:
character(len=*), parameter :: newline = new_line("a")
makes ifort (Version 11.1 on Linux) say:
code.f90(4): error #6263: This intrinsic... paul.anton.letnes1(77)
X = DBLE(Y)4571 (7/22/2012 1:51:35 PM) I have some code in DOUBLE PRECISION which, however, has real input and
output values. The input values are converted to internal variables via
DBLE and the results are converted to the output values via R... helbig(4870)
Transfer20105 (8/14/2012 2:03:56 AM) I find a frequent need to byte swap when I transfer from little endian
to big endian destined output. It would be nice if transfer
automatically byte swapped (by selection). Does it already support this
... garylscott(1357)
gfortran to compile/link to DLL (win) and SO(linux)383 (8/15/2012 7:28:18 PM) No experience at all with gfortran. I have relied on MS PowerStation 4 for
the last 15 years or so. With that compiler I could create a DLL (not SO
obviously) and have control over which routines are to be ... zdoor(23)
binding arguments to procedure pointers233 (8/14/2012 10:35:01 PM) I'd like to pass a procedure pointer as an argument to some other function,=
but with the arguments to that procedure bound to the pointer. (boost::bin=
d does this in C++: http://www.boost.org/doc/libs/1_50... mlohry(37)
including long character literal in code3038 (8/13/2012 8:50:34 AM) Hi,
I'm using embedded Lua to read my input files, and want to run some code
by the interpreter, mostly defining helper functions for the input file
writer (a file written by a human) to use.
So the F... paul.anton.letnes1(77)
Newbie question re: problem with gfortran, g95 on Linux1674 (8/14/2012 6:21:21 AM) Hello!
This should be fairly simple - due to my limited experience with Fortran,
it is nevertheless giving me a hard time. I am trying to compile this code
(which is offered as solid and as thoroughly test... tfischer.ncku(2)
problem with allocate a large array1156 (8/10/2012 11:28:11 PM) Dear All Fortran experts,
I met a very strange problem using allocation. And I don't know how to fix =
it. The test code is as follows. It seems the allocation of the large array=
E is successful. And eve... wenbinyu.heaven(44)
the quality of Fortran code posted on rosettacode428 (8/12/2012 1:43:48 AM) I do not how code get posted on Rosstta, but I think it will
be better for Fortran if the code is reviewed so that it all
compiles clean with all checking enabled.
I just downloaded a random example Fortra... Nasser
Random sampling without relpacement13160 (8/9/2012 5:42:13 PM) I have to ample a certain number of objects from a population. The following piece of code gives the sampling with replacement. What condition can I use for the sampling without replacement?
do while(j .lt. ... gyanendra.pokharel(31)