Deallocate all17920 (7/15/2010 4:07:50 AM) I'm supporting a giant legacy app that allocates memory in lots of
places. It sure would be handy to have a "deallocate all" function.
Does any version of fortran have such a thing?
... A
REAL and COMPLEX equality/inequality comparisons2247 (8/22/2012 8:55:42 PM) What do people think about comparisons for equality/inequality
for REAL and COMPLEX numbers?
Should compilers warn about them when "normal" warnings like gfortran's
-Wall is used?
Should compilers warn ... tkoenig1(168)
atan2() in C and Fortran ?361 (9/12/2012 7:14:47 AM) I've translated some C code (it uses a 4th order RK method to do plate
vibration analyses). This resulted in >16K lines of Fortran. In
addition, I'm a Fortran newbie.
I made the assumption that atan2() i... john.chludzinski(61)
GDB & gfortran indexing257 (9/11/2012 7:28:26 AM) I tried a trick common for C coders when using GDB (when indexing):
(gdb) set $i = 0
(gdb) p W[$i++]->V
(gdb) RET
(gdb) RET
....
With gfortran I get:
(gdb) set $i=1
(gdb) p plts(12)%conn(i)%me
Va... john.chludzinski(61)
Calling JAVA in FORTRAN164 (9/11/2012 9:41:37 AM) After programming and testing a GUI in Java I would like to use this
GUI in a Fortran 95 program. While there is much info on integrating C
and C++ with Fortran and about using Fortran in Java I would like to... Georg.Waldgreve(5)
CHE Calculations: Double summation1756 (9/7/2012 2:26:32 AM) Frequently in Chemical Engineering Calculations that involve phase equilibrium we need to perform the following summation:
Sum(i)[x(i)*[Sum(j)x(j)*a(i,j)]]
where a(i,j)=sqrt(b(i)b(j)c(i)c(j))*(1-k(i,j))
... michael.caracotsios1(9)
Very Huge collection of Solutions Manuals & Test Banks #41796 (3/6/2012 10:38:51 AM) Hello, We would like to inform you that we have updated our list with the followin= g new titles. You can contact us directly at Student.p24(at)Hotmail(dot)com . If the title you are looking for is not liste... student.p24(147)
binary data #27295 (8/30/2012 9:40:13 AM) Hi!
My dosimeters provide data ASCII data-files, providing the data in 16-bit h=
exadecimal words. Reading in these words goes well. I declared them as foll=
ows:
CHARACTER(4) :: MyWord
In SOME ca... arjan.van.dijk(248)
array of derived type components #2947 (9/8/2012 8:22:23 PM) Given a derived type with scalar components
and an array of this derived type
the components can be used as an array:
E.g.
type TT
integer :: a
integer :: b
integer :: c
end type
... go2625(8)