3
votes
3answers
79 views
Tool for program statistics
Is there a tool which is able to parse my source code (fortran, C or C++) and return statistics such as the number of loops, the average loop size, the number of functions, the num …
3
votes
10answers
285 views
The reading list for scientific programmer
Hi all,
I am working to become a scientific programmer. I have enough background in Math and Stat but rather lacking on programming background. I found it very hard to learn how t …
0
votes
1answer
33 views
Fortran compiler that would work with Windows Azure?
Does anyone know of a Fortran compiler that can be used inside a Windows Azure project? I am ultimately looking to take a fortran code I have upgraded with MPI and get it to run in …
0
votes
2answers
56 views
Fortran: 32 bit / 64 bit performance portability
I've been starting to use Fortran (95) for some numerical code (generating python modules). Here is a simple example:
subroutine bincount (x,c,n,m)
implicit none
integer, inte …
1
vote
5answers
99 views
Fortran: How do I read the first character from each line of a text file?
Hi, this is my first time trying to program in Fortran. I'm trying to write a program that prints the first 1476 terms of the Fibonacci sequence, then examines the first digit of e …
2
votes
5answers
161 views
Stack Overflow in Fortran program
I have a problem with my simple Fortran program. I am working in Fortran 77, using Compaq Visual Fortran. The program structure must be in the form of a main and a subroutine, beca …
0
votes
2answers
59 views
How do I get my fortran output into excel?
After running a model in fortran (95) I end up with some result arrays (and one result matrix). I'd like to move these into excel for reporting purposes. What's the easiest way t …
0
votes
0answers
51 views
How do I install gfortran (via cygwin and etexteditor) and enable ifort under Windows XP?
I'm a newbie in the Unix world so all this is a little confusing to me. I'm having trouble compiling some Fortran files under Cygwin on Windows XP.
Here's what I've done so far:
…
1
vote
1answer
56 views
What is meant by . usage after a number in Fortran?
Hi.
What is meant by . (dot) usage after a number in Fortran code?
For example:
x=a+b+45.-c-d
thanks in advance
1
vote
1answer
77 views
Fortran pointer functions: why does this code’s behavior depend on the order of function calls?
Context
The toy Fortran code posted below calls two pointer functions. That is, both functions return a pointer. In fact, they're both array pointers. They both attempt to do t …
1
vote
2answers
85 views
Datamining models in FORTRAN or C (or managed code)?
We are planning to develop a datamining package for windows. The program core / calculation engine will be developed in F# with GUI stuff / DB bindings etc done in C# and F#.
Howe …
2
votes
2answers
45 views
Compiling a ‘static’ binary from fortran on mac
Hi,
I would like to compile fortran code on mac such that it does not depend on any shared library. Ultimately, I want to be able to send the binary to other people and for it to …
1
vote
0answers
80 views
Visual Studio, Intel Visual Fortran, and Visual C/C++ mixed-language compile
Working with Visual Studio 2008 Pro, with Intel Fortran compiler v11, on Windows 7 x64.
I have an Intel Visual Fortran project set up with all the fortran source files. I wish to …
1
vote
4answers
162 views
Writing and calling pure subroutines in Fortran 90 using gfortran
When writing and calling pure subroutines in Fortran 90 using gfortran, how do I find out why the compiler emits this error?
Error: Subroutine call to XXXX at (1) is not PURE
I' …
2
votes
3answers
140 views
Tentative definitions in C99 and linking
Consider the C program composed of two files,
f1.c:
int x;
f2.c:
int x=2;
My reading of paragraph 6.9.2 of the C99 standard is that this program should be rejected. In my in …
