0
votes
1answer
28 views
Fortran and mysql
Is there a library (opensource), so I can access MySQL in Fortran?
0
votes
1answer
59 views
How to make a fortran executable that runs on Mac OS X 10.5 and 10.6
I'd like to compile a fortran code with gfortran so that it will work on both Mac OS X 10.5 and 10.6. Is there a way to do this? I tried compiling on 10.6 and get this message wh …
1
vote
3answers
41 views
tutorial on generating MSI
Exact duplicate: What is the best choice for building Windows installers
Exact duplicate: Best Windows installation file creator
I have a customer who is new to generating VB.NET …
3
votes
3answers
88 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
330 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 …
1
vote
5answers
136 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 …
0
votes
2answers
85 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 …
0
votes
1answer
42 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 …
2
votes
5answers
197 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
71 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 …
1
vote
1answer
118 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 …
0
votes
0answers
66 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:
…
2
votes
2answers
59 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
1answer
62 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
0answers
136 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 …
