0
votes
1answer
103 views

How to use Fortran 77 subroutines in Fortran 90/95?

I'm writing a code with Fortran 90 and now I need to use the special functions in amos Fotran 77 library(http://www.netlib.org/amos/). Now I found a module interface for those ...
1
vote
1answer
37 views

Generate sound/beep in fortran 90/95

I need to generate a sound in fortran when my run ends. I need something similar to "\a" or Beep(,) that are used in c++. Thanks
0
votes
1answer
190 views

Fortran I/O, first read is EOF?

I'm trying to use some old FORTRAN code with some new Java code which works in Windows(as an exe) but not in OS X. I try to build it in eclipse and I get make: *** [all] Segmentation fault: 11 so ...
0
votes
2answers
145 views

Convert FORTRAN DEC UNION/MAP extensions to anything else

I have some old f77 code that extensively uses UNIONs and MAPs. I need to compile this using gfortran, which does not support these extensions. I have figured out how to convert all non-supported ...
0
votes
0answers
56 views

Splitting up a large vector into many smaller vectors effectively (FORTRAN 95)

I've been writing FORTRAN 95 programs which involve very large vectors. gfortran refuses to compile these programs or windows refuses to run them depending on how I've declared the vectors because ...
1
vote
1answer
51 views

difference results between 10**-2 and E-2

The following program print 1 for 100E-2 and gives 0 for 100*10**(-2), that means that the operator exponent doesnot work for negative **, is that correct. Thanks in advance program testme implicit ...
3
votes
1answer
125 views

When does a module go out of scope in Fortran 90/95?

My intended use is program main use mod external sub call sub end program main subroutine sub ! code here calls subroutines in mod end subroutine sub Specifically, will module mod be in ...
0
votes
5answers
175 views

Calling a subroutine multiple times with different function as argument each time

I'm enough of a novice to not know the terminology, so I can't search the Web for the answer to this. More than once, in programming, I've wanted to do something like this. A and B are subroutines, ...
2
votes
1answer
252 views

Converting arbitrary floating-point string to real in Fortran 95

Are there any easy ways of convertin an arbitrary floating-point string to a real number in fortran? Think of something like strtod? The problem with READ statement is that all floating-point formats ...
0
votes
1answer
198 views

Fortran: How to read to an array from a file

I'm trying to read integers from a file to an array. But I get an error when I run the program. PROGRAM MINTEM INTEGER TEMP(4,7), I, J, MINIMUM, CURRENT OPEN(UNIT=1, FILE='temps.dat') READ (1,*) ...
0
votes
2answers
121 views

Will FORTRAN90 code always work with a FORTRAN95 compiler?

We have a complex program written in FORTRAN 90, I've only been able to find FORTRAN 95 compilers. Unfortunately I have limited access and experience but need immediate insight on the problem. Will ...
1
vote
1answer
80 views

ctags alternatives for fortran90/95

I have used ctags for fortran 90/95 but i am looking for something better, something that can tell me all references of a tag. I just used understand for fortran and liked it but its too expensive. I ...
3
votes
1answer
1k views

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 matrix-vector multiplication. What do you suggest I use? I have searched around ...
0
votes
1answer
2k views

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 Fortran and Visual Studio 2010). Then I wrote another module ...
0
votes
2answers
195 views

saving program inputs to a module for “global” use

I've written a program in Fortran 90 that reads hundreds on inputs from a text file and performs many different, sequential operations on them. I don't want to keep passing these hundreds of values ...
2
votes
1answer
154 views

Is it possible to use a pointer in type constructor in fortran?

In some Fortran 95 code, I have a type with a pointer field. I want to declare a module variable of type(foo) which is initialized at compile-time. Something like this: module foo_module implicit ...
0
votes
1answer
204 views

Fortran allocatable array lifetime

Say I have the below code: program test call foo call foo contains subroutine foo integer(8),dimension(:),allocatable:: var1 allocate(var1(10)) ... return end subroutine foo ...
0
votes
1answer
69 views

Array valued function to be called from type definition

While writing a library to read image values, I have the following problem: I defined a new type called realimage. Within this type a function is referenced, which returns an array as a result. ...
0
votes
1answer
173 views

OOP Fortran: saving pointers to intent(IN) variables

I have a Fortran module that I want to organize following OOP philosophy as much as possible, while still making it compatible with Fortran 2003. This module basically: (a) allocs/frees temporary ...
1
vote
1answer
135 views

Fortran Matrix Generation Code Error

This fortran code is supposed to copy data from a simple matrix table in a txt file, and then calculate the grade and average based upon the previous grades for each row and column. For some reason, ...
0
votes
1answer
162 views

What do these Fortran (90) statements do? [closed]

I have run into the follow code and I do not understand it. What does it do? A(*) do n=(k,k-1,j+1-k)
1
vote
2answers
2k views

Calling a subroutine in Fortran (Segmentation fault)

The following code gives segmentation error when compiled with pgf90 on the Linux system, while is run successfully when I used the Intel Visual FORTRAN on Windows. program main implicit none ...
0
votes
1answer
344 views

Segmentation error on calling subroutine for the second time on pgf90 compiler on linux

I can not call the same subroutine two time using pgf90 fortran complier on Linux environment. To call the subroutine for the 1st time is OK but calling it for the 2nd time, it gives Segmentation ...
2
votes
3answers
159 views

fortran modules — finding where variables are defined/assigned

I am trying to extract a portion of a large fortran to make it its own program. A particular subroutine imports many modules (only two shown here as an example): subroutine myroutine(aa,bb) use ...
1
vote
2answers
2k views

Reading data file in fortran with known number of lines but unknown number of entries in each line

How can I read the data file containing known number of lines but the number of entries in each line is unknown, e.g. if my data file contain some thing like 1 3 4 5 6 -7 8 -9 1 3 5 6 4 5 6 7 8 3 5 ...
2
votes
1answer
122 views

Format statements in Fortran modules

I have a module with a number of subroutines that all use the same set of formats for output. Right now, I have to declare the formats in every subroutine. Is there a way to declare them in the ...
2
votes
1answer
802 views

Function interface in Fortran 90/95

I have a program that calls a subroutine which then calls a function. I am somewhat confused by Fortran's requirements for function type declaration. I have declared the type in the function (i.e. ...
1
vote
4answers
651 views

Formatting in Fortran 90/95

I am learning Fortran 90/95, and the book I am using had a discussion about the influence of line printers on the format statement. According to the book, the program uses the first character of the ...
2
votes
1answer
629 views

Fortran 95: inline evaluation of if-conditions

Here a small snippet of code that returns epsilon() for a real value: program epstest real :: eps=1.0, d do d=1.0+eps if (d==1.0) then eps=eps*2 exit else eps=eps/2 end if end ...
1
vote
2answers
351 views

gamma underflow fortran 95

I'm very new to fortran. I would like to calculate gamma(-170.1) using the program below: program arithmetic ! program to do a calculation real(8) :: x x = GAMMA(-170.1) print *, x end ...