Tagged Questions

Fortran 77, approved as the new standard in April 1978, added a number of significant features to address many of the shortcomings of its predecessor, Fortran 66. Its successor is Fortran 90.

learn more… | top users | synonyms

17
votes
4answers
4k views

Why define PI = 4*ATAN(1)

What is the motivation for defining PI as PI=4.D0*DATAN(1.D0) within a Fortran 77 code? I understand how it works, but, what is the reasoning?
5
votes
3answers
4k views

Array of Strings in Fortran 77

I've a question about Fortran 77 and I've not been able to find a solution. I'm trying to store an array of strings defined as the following: character matname(255)*255 Wich is an array of 255 ...
4
votes
4answers
183 views

Are FORTRAN 77 programs faster than Fortran 90 ones?

Today I was reading code from some very popular numerical libraries written in FORTRAN 77 such as QUADPACK (last updated in 1987), and I was wondering if there is any reason not to rewrite those ...
4
votes
1answer
499 views

Export custom formatted expressions from Mathematica

How can I get Mathematica to export/save/write a text file with proper Fortan77 formatting, that is, 72 columns and a continuation marker on the sixth column? I am using Mathematica to generate large ...
3
votes
1answer
88 views

Why does COBOL have to be indented?

Why does COBOL have to be indented, as in, have additional spacing in each sourcefile? Consider this code (note the additional whitespace): IDENTIFICATION DIVISION. PROGRAM-ID. HELLO-WORLD. ...
3
votes
6answers
406 views

Fortran 77 conversion to C++

I have a Fortran 77 application that uses Common declarations to "share" memory variables. Back in the day, when memory was expensive and hard to come by this was the way around it. The equipment ...
2
votes
1answer
51 views

Fortran do loop with internal goto

I have a Fortran77 snippet that looks like this: DO 1301 N=NMLK-2,2,-1 Some code... IF(NB1(N).EQ.50) GOTO 1300 ...
2
votes
2answers
129 views

FORTRAN 77 Simple input/out

I am new to FORTRAN, and must write a FORTRAN 77 program to read the following format from a file redirection or standard input: [CHARACTER] [REAL] [REAL] [REAL] ... (can have any number of these) D ...
2
votes
2answers
84 views

Fortran 77 bug with commenting out write statements

I'm working with an old FORTRAN 77 program, and I've encountered a bizarre bug. As-is, the code appears to run fine, and finishes in less than a second. But it produces a bunch of extraneous output ...
2
votes
1answer
145 views

multiple unrecognized options in f77

I'm attempting to compile some complete Fortran code developed by someone else. The makefile makes references to CC, F77 and F90. Our server doesn't have F90 on it, but I could probably ask for it ...
2
votes
1answer
98 views

Relation of GNU f77/gfortran and f2c?

What is the relation of g77/gfortran and f2c today? Is there still development going on? Is one benefiting from the others advances (like bugs and performance)? Who is developing f2c (if it's not ...
2
votes
2answers
183 views

Fortran 77 handling C++ memory allocations

I'm trying to write a C++ program that utilizes a few tens of thousands of lines of Fortran 77 code, but running into some strange errors. I'm passing three coordinates (x,y,z) and the address of ...
2
votes
5answers
1k views

F77: problem to compile with g77 a program which was normally compiled with Absoft compiler

I am not a Fortran programmer (just a short experience), but I need to compile a program partly written in F77. Someone has compiled it with Absoft compiler before me, but now I need to repeat the ...
2
votes
2answers
166 views

Call C/C++ code from a Fortran 77 code

I'm trying to make a Fortran 77 wrapper for C++ code. I have not found information about it. The idea is to use from functions from a lib that is written in C++ in a Fortran 77 progran. Does anyone ...
2
votes
2answers
270 views

returning real values from fortran77 dll to c#

Can somebody please point out what I'm doing wrong here? FORTRAN 77 dll code *$pragma aux DON "DON" export parm(value*8,value*8) SUBROUTINE DON(DAA,DBB,DCC) REAL*8, DAA,DBB,DCC ...
2
votes
3answers
669 views

Is Fortran 77 POSIX conformant? - Write binary files

I'm trying to write binary data files from fortran, but I find the regular file interfaces very limiting, I wonder if Fortran has POSIX compilant functions. I found this standard: IEEE 1003.9-1992, ...
2
votes
2answers
4k views

Make double-precision default in g77, Fortran compiler

Is there an analog of the "-fdefault-real-8" gfortran (the GNU Fortran 95 compiler) option in g77 (the GNU Fortran 77 compiler)? This option sets the default real type to an 8-byte wide type. I ...
1
vote
0answers
47 views

Linking to C in Microsoft developer studio 2000 Fortran powerstation v 4

I am trying a test build of some old code (hence the old compiler). I need to link C and F files, but I am getting the following error "error LNK2001: unresolved external symbol _flow" for each ...
1
vote
1answer
91 views

Fortran nested loops with one continue

I'm rewriting some legacy code and came across this: DO 4 I=1,N ... DO 4 J=1,N ... 4 CONTINUE There appears to be only one CONTINUE for these two loops. Is it equivalent to this Java ...
1
vote
1answer
150 views

Good FORTRAN 77 Books (free/otherwise) [closed]

I'm looking for some good FORTRAN 77 books. I'm not looking for FORTRAN books such as this one which assumes that you are entirely new to programming and goes on explaining things that you already ...
1
vote
4answers
261 views

Whats wrong with the following FORTRAN 77 code?

I am a total FORTRAN 77 newbie, and I don't understand why the first code shows an error while the second one compiles when I expect them to do the same. First code (which doesn't compile and gives a ...
1
vote
2answers
388 views

Run Fortran command line program within Python

So I am in a bit of a pickle. I am trying to write plotting and fitting extensions to a Fortran77 (why this program was rewritten in F77 is a mystery too me, btw) code that requires command line ...
1
vote
4answers
375 views

Update from Fortran IV to Fortran 77

I have received an consulting assignment where I will update a Fortran IV program to Fortran 77. The problem is that I never coded in Fortran. Can you give me tips on where I can learn Fortran and ...
1
vote
1answer
243 views

“Unexpected Array Reference” in Fortran 77

I'm relatively new to programming, and I'm currently trying to write a program using Fortran 77 that will use the Runge-Kutta method of equation solving to determine the temperature of a spherical ...
1
vote
2answers
169 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 ...
1
vote
1answer
369 views

Error: Unexpected end of format string in format string, fortran 90

Getting this error while trying to compile a copied code from a fortran 77 program. code: 900 FORMAT(1H0,2X,'ABSOLUTE GRID LIMITS FOR DATA RETENTION FOR RADAR',I3,' XMIN-XMAX ',2F8.3,' YMIN-YMAX ...
1
vote
1answer
185 views

Fortran compilation in all computers?

Heys, I've been following stackoverflow for a time, but for the first time I have a question that I haven't found the answer to here =) I've got a quick and a tiny question. I have a fortran program, ...
1
vote
2answers
382 views

Fortran 77 debugger to check array bounds

I am still green to debugging F77 and am having some problems with array bounds. I recently modified a lengthy code to have new array sizes. Everything 'seemed' okay until I noticed methods to alter ...
1
vote
1answer
662 views

pass fortran 77 function to C/C++

Is it possible to pass fortran 77 function as a callback function pointer to C/C++? if so, how? information I found on the web relates to fortran 90 and above, but my legacy code base is in 77. many ...
1
vote
4answers
611 views

Abstract Data Types in Fortran 77 (Fortran-II)?

I'm attempting to work in Fotran 77, and I've found the need for a tree based data structure. Aside from implementing a tree with an array, is there any way to build a tree with pointer nodes to other ...
1
vote
2answers
169 views

Opaque pointers in F77

I have a project that is half in C and half in Fortran 77. [No, not Fortran 90 or 03, Fortran 77.] The code would be much cleaner if I could pass pointers generated on the C side back to Fortran, ...
1
vote
2answers
834 views

Where can I get the files to install f2c on redhat linux?

I am looking for an rpm or simple install instructions for getting f2c to work on my redhat linux os. I am new to linux and it is difficult finding something like this on google. (The goal is to use ...
1
vote
2answers
731 views

Linking errors from C language in fortran lib

I am porting the application with old fortran compiler and old visual studio(VC5) to new fortran compiler 11 and visual studio 2005. Application contains both 'C' and fortran code. I am compiling the ...
1
vote
4answers
364 views

I would like to know what the following FORTRAN 77 code does

In a .f file there is code that does this: real Bob, avar ... avar = Bob( 8.3 ) ... Bob appears to be a function but it is declared at the beginning of the file as a real. Then there is a .d file ...
1
vote
4answers
2k views

Generating random number in a given range in Fortran 77

I am a beginner trying to do some engineering experiments using fortran 77. I am using Force 2.0 compiler and editor. I have the following queries: How can I generate a random number between a ...
0
votes
1answer
28 views

Converting a Fortran statement to PHP

I am not good at computer programming and have a problem in understanding a Fortran statement. I would like to convert the following statement in Fortran into PHP. Really appreciate your help! ...
0
votes
1answer
67 views

How should I call a Fortran function?

How should I call a Fortran function? I am trying to call DLANSY but it erroneously returns 0. See the code and the program output below. SUBROUTINE ...
0
votes
1answer
50 views

Fortran variable type conversion

Quick question. I have a fortran77 subroutine with a variable declaration DIMENSIONS HH(13, 1000) I assume that since no type is specified, this variable is an array of integers. Later in the ...
0
votes
1answer
73 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 ...
0
votes
1answer
42 views

Using DLLs in g77

I'm using the old g77 compiler (http://people.tamu.edu/~matthewmccleskey/g77.html) but can't seem to find out how to use external DLLs in my code. Is it even possible, or would I have to get a newer ...
0
votes
1answer
131 views

Real vs. Integer in Fortran

I have a program which loops over one variable and computes a value at each step: program cpout implicit none !declarations integer, parameter :: dp = selected_real_kind(15) ...
0
votes
1answer
63 views

Fortan 77 Variable Size Array of strings?

I am a dummy in Fortran 77 and have always been a C++ coder, but I have to modify a code from years long ago... I want to create a variable size array of strings and I cannot find online how to do ...
0
votes
1answer
467 views

Is it possible to compile Fortran code for iPad?

I have an application written in Fortran 77 and need it to work in iPad. Is it possible? I prefer not have to rewrite this code in objective C, since there's a lot of complex calculations and I'm ...
0
votes
1answer
70 views

Use function inside subroutine in FORTRAN77

I am updating legacy code and I need to use a simple mathematical function inside a subroutine. I cannot figure out how to do this. I have a function that works when called from a test program. What ...
0
votes
2answers
323 views

Reading a string with spaces in Fortran

Using read(asterisk, asterisk) in Fortran doesn't seem to work if the string to be read from the user contains spaces. Consider the following code: character(Len = 1000) :: input = ' ' ...
0
votes
1answer
27 views

Declare array of integers and floats in f77

Quick question: Is it possible to declare one array with integers and floats in Fortran 77? If yes, how? Thanks MW
0
votes
2answers
994 views

How to install f77 on Mac OS X 10.6

Can anyone tell me how to install f77 on Mac OS X 10.6? I am quite new to f77. Thank you very much
0
votes
4answers
412 views

Need assistance with a FORTRAN 77 program

I am trying to write a program to solve a quadratic equation.If the value of (B**B-4*A*C) is 0 or negative, it should immediately write that "The roots of the equation is complex", but if positive, it ...
0
votes
1answer
153 views

FORTRAN 77 - SWAP

With FORTRAN 77 is it possible to perform a swap on two arrays, in the same way swap works in c++? I have two large arrays, e.g. v1 and v2, and would like to swap v1 and v2 at the end of each ...
0
votes
1answer
473 views

Dynamic memory allocation in fortran77

I am writing a Fortran77 program which uses a 3-dimensional array. I am declaring the array as follows Array_E(0:500,0:1000,0:100). When I execute the program it crashes instantly saying that it is ...

1 2