Top "Fortran90" questions

The standardized successor to FORTRAN 77, released as an ISO standard in 1991 and an ANSI Standard in 1992.

`Relocation truncated to fit` error in Fortran with large arrays

I have written a Fortran 90 code to extract angles from molecular simulation data. In this code I used a module …

fortran fortran90 gfortran
Assumed size arrays: Colon vs. asterisk - DIMENSION(:) arr vs. arr(*)

Is there any difference between these two methods of declaring an assumed-size array? e.g. real, dimension(:) :: arr and real :: …

arrays fortran fortran90
Fortran 90/95 library for sparse matrices?

I am looking for a library for dealing with sparse matrices in fortran 90/95. I only need very basic operations like …

fortran sparse-matrix fortran90 blas fortran95
The mysterious nature of Fortran 90 modules

Fortran 90 modules are evanescent creatures. I was using a (singular) module for a while with some success (compiling using Intel …

visual-studio-2010 fortran fortran90 fortran95 intel-fortran
Vim highlighting weird parts of FORTRAN

I am using VIM theme molokai, if that makes any difference. I have been learning FORTRAN lately and when I …

vim fortran90
How can I left-justify numerical output in fortran?

I am writing some simple output in fortran, but I want whitespace delimiters. If use the following statement, however: format(…

fortran fortran90
Stack overflow in Fortran 90

I have written a fairly large program in Fortran 90. It has been working beautifully for quite a while, but today …

fortran stack-overflow fortran90
Multiple statements on same line in FORTRAN 90

I have a whole series of assignments which I have put on the same ike using a ";" to seperate the …

fortran fortran90
Fortran DO loop, warning to use integer only

I installed gfortran on my Ubuntu 15.04 system. While compiling Fortran code, the DO loop asks to take integer parameters only …

fortran fortran90 gfortran fortran95
Best way to write a large array to file in fortran? Text vs Other

I wanted to know what the best way to write a large fortran array ( 5000 x 5000 real single precision numbers) to …

io fortran fortran90