Tagged Questions

Fortran is a general-purpose, procedural, imperative programming language that is especially suited for numeric computation and scientific computing.

learn more… | top users | synonyms

54
votes
19answers
19k views

Is Fortran faster than C?

From time to time I read that Fortran is or can be faster then C for heavy calculations. Is that really true? I must admit that I hardly know Fortran, but the Fortran code I have seen so far did not ...
33
votes
5answers
11k views

CMake tutorial

Can anyone provide link(s) to good CMake tutorial except very expensive and hard-to-get official one? Especially interesting in using CMake for Fortran projects but will be grateful for any good ...
23
votes
18answers
3k views

(For what) Are Fortran, Cobol and Co. used today?

I'm a relatively young programmer and so I don't really know much about languages like Fortran or Cobol that have their origins in the beginning of modern informatics. I'm a bit confused because it ...
21
votes
18answers
2k views

The reading list for scientific programmer

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 to use a language for ...
18
votes
6answers
1k views

Should I learn Fortran or C++ to extend R?

I work with machine learning with fairly large datasets (they still fit in memory) and I have written some calculations in R which I find to be too slow. Thus I would like to replace the "critical ...
18
votes
6answers
1k views

Writing robust and “modern” Fortran code

In some scientific environments, you often cannot go without FORTRAN as most of the developers only know that idiom, and there is lot of legacy code and related experience. And frankly, there are not ...
17
votes
9answers
3k views

Learning FORTRAN In the Modern Era

I've recently come to maintain a large amount of scientific calculation-intensive FORTRAN code. I'm having difficulties getting a handle on all of the, say, nuances, of a forty year old language, ...
14
votes
0answers
445 views

How to calculate the number of mutants in a quite simple Fortran-77 Program [closed]

Next week I will make a presentation about mutation test in my class. The professor give me the paper An Experimental Determination of Sufficient Mutant Operators, written by A. Jefferson Offutt ...
13
votes
5answers
533 views

Why Compile to an Object File First?

In the last year I've started programming in Fortran working at a research university. Most of my prior experience is in web languages like PHP or old ASP, so I'm a newbie to compile statements as ...
13
votes
3answers
7k views

Calling 32bit Code from 64bit Process

I have an application that we're trying to migrate to 64bit from 32bit. It's .NET, compiled using the x64 flags. However, we have a large number of DLLs written in FORTRAN 90 compiled for 32bit. ...
11
votes
7answers
1k views

C or Ada for engineering computations?

as an engineer I currently use C to write programs dealing with numerical methods. I like C as it's very fast. I don't want to move to C++ and I have been reading a bit about Ada which has some very ...
11
votes
5answers
971 views

How does BLAS get such extreme performance?

Out of curiosity I decided to benchmark my own matrix multiplication function versus the BLAS implementation... I was to say the least surprised at the result: Custom Implementation, 10 trials of ...
10
votes
11answers
1k views

Modern language with the advantages of FORTRAN?

I've been working with a lot of FORTRAN 77 lately, and though I had reservations at first, I now see some great qualities of the language. It is: Simple to learn (no object-oriented or ...
10
votes
8answers
2k views

Fortran as a Good Choice

Is there any good reason to develop a new software project with Fortran anymore?
8
votes
3answers
691 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 interpretation of ...
8
votes
8answers
1k views

Is the return worth the investment in learning Fortran?

At my current place of employment there are a handful of maybe two to three employees that add and maintain functionality of legacy fortran77 code. When I was first hired I briefly considered trying ...
8
votes
6answers
4k views

Conversion of Fortran 77 code to C++

Has anyone converted a large (ours is 550,000 lines) program of Fortran 77 code to C++ ? What pitfalls did you run into ? Was the conversion a success ? Did you use a tool like for_c ( ...
7
votes
2answers
143 views

Circle-Polygon intersections

A Computational Geometry problem: The point P0 is chosen randomly on an edge (e.g.,EB) of a polygon (e.g.,BCDE), to find possible points (i.e., P1,P2,P3,...) on other edges based on the given distance ...
7
votes
3answers
250 views

How to get priorly-unkown array as the output of a function in Fortran

In Python: def select(x): y = [] for e in x: if e!=0: y.append(e) return y that works as: x = [1,0,2,0,0,3] select(x) [1,2,3] to be translated into Fortran: ...
7
votes
1answer
246 views

How to use FORTRAN subroutines or functions in Mathematica?

I'm interested in calling fortran codes in a Mathematica session. I learn that Mathlink offers a way to do that. But I have little knowledge on C and nothing on C++. Is anybody willing to give me a ...
7
votes
4answers
233 views

Methods for entering equations while programming in C/C++ , Python or Fortran

I am writing a code which had long mathematical equations with many trigonometric and other identities. Is there a way of visualising the same expression in latex and making a C or python expression ...
7
votes
3answers
966 views

Comparison of performance between Scala etc. and C/C++/Fortran?

I wonder if there is any reliable comparison of performance between "modern" multithreading-specialized languages like e.g. scala and "classic" "lower-level" languages like C, C++, Fortran using ...
7
votes
4answers
8k views

How do you USE Fortran 90 module data

Let's say you have a Fortran 90 module containing lots of variables, functions and subroutines. In your USE statement, which convention do you follow: explicitly declare which ...
6
votes
4answers
135 views

How to compile single fortran objects using translator f2c?

I have the following problem: I want to simulate some control engineering system. As it is quite complicated I used the computer to derive some (complicated) equations which can only be exported to ...
6
votes
2answers
450 views

call functions from a shared fortran library in python

I would like to call some functions from a Fortran shared library in Python. I have found some links on the net and read them, and according what I found, I should do libadd = ...
6
votes
5answers
299 views

Are there such good C compilers that fortran is becoming a redundant language? [closed]

Just wondered, as I'd always considered Fortran's use to be in supercomputing. However, I often hear C compilers can make C as fast as Fortran, so is it's use limited? Also, if this is true what are ...
6
votes
9answers
1k views

What advantages does modern Fortran have over modern C++?

I'm trying to decide between Fortran and C++ for an application in scientific computing. It's not clear to me if Fortran still has advantages over other languages when it comes to performance. For ...
6
votes
2answers
2k views

Fortran intent(inout) v's no intent

Good practice dictates that subroutine arguments in Fortran should each have a specified intent (i.e. intent(in), intent(out) or intent(inout) as described this question): subroutine bar (a, b) ...
6
votes
3answers
582 views

matlab precision determinant problem

I have the following program format compact; format short g; clear; clc; L = 140; J = 77; Jm = 10540; G = 0.8*10^8; d = L/3; for i=1:500000 omegan=1.+0.0001*i; a(1,1) = ...
6
votes
6answers
225 views

Increasing Speed

A broad question I know but: Does anyone have general tips on increasing execution speed in Fortran programs?
6
votes
2answers
1k views

Visual studio 2008 code snippets for another language

Is there a way to define code snippets for another language, other then the default ones (C#, VB ...) in VS 2008 ? I'm using Intel's fortran compiler with Visual studio, and its integration in it is ...
5
votes
1answer
76 views

Fortran I/O: Specifying large record sizes

I am trying to write an array to file, where I have opened the file this way: open(unit=20, FILE="output.txt", form='unformatted', access='direct', recl=sizeof(u)) Here, u is an array and sizeof(u) ...
5
votes
1answer
82 views

Automatic generation of Fortran 2003 bindings from C library headers (using iso_c_bindings intrinsic module)

Is there a tool to automatically generate Fortan bindings from C library header, using intrinsic iso_c_bindings module from Fortran 2003 standard? I am not interested in translating C to Fortran, but ...
5
votes
2answers
158 views

Fortran read statement reading beyond an end of line

do you know if the following statement is guaranteed to be true by one of the fortran 90/95/2003 standards? "Suppose a read statement for a character variable is given a blank line (i.e., containing ...
5
votes
2answers
90 views

getting free unit number in fortran

I need to develop a library that opens a file and parses the stuff. The unit number, due to fortran IO style, must be decided by me, but I can't know what other units are open in the client code. Is ...
5
votes
3answers
138 views

Program stalls during long runs

Fixed: Well this seems a bit silly. Turns out top was not displaying correctly and programs actually continue to run. Perhaps the CPU time became too large to display? Either way, the program seems ...
5
votes
1answer
172 views

what's the overhead of passing python callback functions to Fortran subroutines?

I just wrapped a Fortran 90 subroutine to python using F2PY. The subtlety here is that the Fortran subroutine aslo takes a python call-back function as one of its arguments: SUBROUTINE f90foo(pyfunc, ...
5
votes
1answer
152 views

Given a huge symmetric positive definite matrix, how to calculate a few diagonal elements of its inverse?

Update: This is a pure Fortran question now; I put the maths stuff on M.SE. Consider a PxP symmetric and positive definite matrix A (P=70000, i.e. A is roughly 40 GB using 8-byte doubles). We want to ...
5
votes
1answer
106 views

Dynamic Hash-like data-structure in Fortran

Is there a library usable in Fortran, which allows the usage of sparse dynamic arrays (hash/dictionary like) besides the Judy arrays?
5
votes
2answers
427 views

Variable size arrays in Fortran without Allocate()

Is there a way to create variable size arrays in Fortran on the stack? Allocate() does not work for me, because it places the array on the heap. This may lead to problems with parallelization (see my ...
5
votes
2answers
203 views

What is the purpose of 'n = n'?

I am reading some Fortran code, and every so often the previous programmer throws in the statement 'n = n'. What is the purpose of this? Some example code: if (cmult.lt.5.) then kx = 0 do ...
5
votes
2answers
345 views

Fortran double precision program with a simple MKL BLAS routine

In trying to mix precision in a simple program - using both real and double - and use the ddot routine from BLAS, I'm coming up with incorrect output for the double precision piece. Here's the code: ...
5
votes
1answer
243 views

standard output in Fortran MPI code

I have a parallel fortran code in which I want only the rank=0 process to be able to write to stdout, but I don't want to have to litter the code with: if(rank==0) write(*,*) ... so I was wondering ...
5
votes
1answer
294 views

R & Fortran call

I don't have experience with Fortran, but I am trying to run a very simple loop in that language by calling it from R via the .Fortran() function. Whenever I run the last line of the R code that is ...
5
votes
6answers
3k views

Best Fortran IDE

Is there anybody use Fortran on stackoverflow? What IDE do you use and which one do you think to be the best. Seems lots of people surround me are quite inconvenient with Intel Visual Fortran. Because ...
5
votes
2answers
488 views

Does Fortran have inherent limitations on numerical accuracy compared to other languages?

While working on a simple programming exercise, I produced a while loop (DO loop in Fortran) that was meant to exit when a real variable had reached a precise value. I noticed that due to the ...
5
votes
5answers
312 views

Prevent a user from closing an application that is opened through a C# program

I have a old command line based program (its fortran if that matters) that is opened from a C# application when a user clicks a button. If the command line program is shut down while it is running ...
5
votes
5answers
349 views

What is being done in here ? (Used math recognition)

I know this isn't exactly programming related per se, but programmers are the most probable of all people who will recognize this maybe. I have the following (X and Y are arrays, both with 3 ...
5
votes
3answers
2k views

How to break out of a nested parallel (OpenMP) Fortran loop idiomatically?

Here's sequential code: do i = 1, n do j = i+1, n if ("some_condition(i,j)") then result = "here's result" return end if end do end do Is there a cleaner way to ...
5
votes
2answers
590 views

how to write wrapper for 'allocate'

I am trying to write a wrapper for 'allocate' function, i.e. function which receives an array and dimensions, allocates memory and returns allocated array. The most important thing is that the ...

1 2 3 4 5 19