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.
0
votes
0answers
43 views
doxygen error state 21 with fortran code
I was searching the web for help and didn't find any. Thats why I thought it might be a good idea to document my problem here.
I had the following problem while documenting a really old (15-20 years) ...
-1
votes
0answers
51 views
how to translate this fortran 77 into MATLAB [closed]
! *****************************************************************
SUBROUTINE CHECK1(NGAUS)
! *****************************************************************
!
IMPLICIT ...
0
votes
1answer
96 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 ...
0
votes
1answer
53 views
Fortran 77 Set array size at runtime
Basically I am looking to enter X,Y pairs read from a file into arrays of length n where n is the number of lines(and thus x,y pairs) in the file. Unfortunately all my attempts at determining the ...
0
votes
2answers
82 views
Fortran fomat statement with highest precision in the system
Someone wanting less precision would write
999 format ('The answer is x = ', F8.3)
Others wanting higher output precision may write
999 format ('The answer is x = ', F18.12)
Thus it totally ...
0
votes
2answers
94 views
defining path for file in FORTRAN
In bash I could write a simple script like below; to read the content of a file in the folder as I define the path for the file using environment variable "fileplace"
#!/bin/bash
...
2
votes
2answers
59 views
Fortran implicit change type
I'm reworking some old Fortran code (F77 i suppose), to be compiled with Intel compiler. I came across some SLATEC routines in this form:
subroutine cffti (n,wsave)
dimension wsave(1)
...
1
vote
3answers
86 views
Smart way to implement lookup in high-perf FORTRAN code
I'm writing a simulation in FORTRAN 77, in which I need to get a parameter value from some experimental data. The data comes from an internet database, so I have downloaded it in advance, but there is ...
-1
votes
1answer
77 views
Fortran 77 with BLAS - can't figure out how to compile
I'm trying to get BLAS working with in a FORTRAN 77 program, but so far I've been unsuccesful and I can't figure out how to get going with this. For reference I'm doing this under Ubuntu 12.10.
This ...
0
votes
1answer
28 views
Fortran splats my output to asterisks - why?
I'm having a hard time wrapping my head around formatting statements in FORTRAN 77.
Without formatting my output, this is what I do (inside a loop, so this happens a few times):
write(*,*) t*1E9
t ...
0
votes
1answer
48 views
Fortran 77: What's wrong with my line continuation syntax?
In a project I've been assigned to I'm asked to compile my code with f77, and I'm trying to get a grip on how to handle the 72 characters per line limit. I'd like to write the following line of code:
...
0
votes
1answer
97 views
Writing binary format on console in FORTRAN under windows
I am trying to write in binary format on console in FORTRAN under windows but I can not do it. I know I can use Open() function and use Form='Unformatted' to open a file and write in binary format. ...
1
vote
1answer
247 views
How to use include statement in Fortran 90?
I have some .h files that are used for some modules in FORTRAN 77 (which I haven't written myself). I want to write a new routine in Fortran 90 and use such .h files.
I've tried to use include ...
1
vote
2answers
72 views
fatal error LNK1169
DEBUG build:
The below error list pops up.
I am okay if this had happened on Release build.
It is quite surprising that it has happened in DEBUG build.
1>libcmtd.lib(dbgheap.obj) : error LNK2005: ...
0
votes
1answer
167 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
1answer
124 views
Reading a text file as a input and then writing text files with the data in 2D matrices as output
I am the real novice in FORTRAN90, of course in any other programming language.
However, I need to make a program for my work.
So I am asking any comment from anybody.
Thanks in advance.
From now on, ...
0
votes
2answers
49 views
Strange output and branch warning when compiling
I compile a fortran 77 code using gfortran and get the following error:
10 open (23,file=outfile,status='old',access='append',err=10)
...
0
votes
2answers
83 views
Fortran 77. Pass array by reference
I need to pass array to subrobroutine by reference. Instead of this interpreter make copy of matrix. And static matrix in MAIN remains like {{0,0}{0,0}{0,0}}. I know in fortran all vars by defauly ...
0
votes
1answer
87 views
Confusion about “do-continue” and “go to-continue” in FORTRAN
Bad news Everyone,
I recently started to learn FORTRAN to understand a code and translate it to C++ (I
know what the code does is not important for this question, but to give some background,
this ...
0
votes
2answers
143 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
1answer
53 views
Fortran77 Casting integer to a String
Out of interest, I was trying to find a way to cast an integer to a String in Fortran77.
I came across CHAR(I), but this converts the ASCII index I into the character in that postion.
Is there a way ...
-1
votes
1answer
140 views
Fortran 95 data list on multiple lines
integer M
character (len = 20) dict(50)
data dict/'gum','sin','for','cry','lug','bye','fly','ugly',
M 'each','from','work','talk','with','self',
M ...
1
vote
1answer
59 views
Fortran77 parameter when executing program
I am currently doing a Fortran77 assignment, so please don't tell me the exact coding, but please give me a hint of what I want to do:
Using UNIX terminal, I would like to get the parameter passed on ...
0
votes
1answer
101 views
Fortran formatted write function triggers “has exited with code 408 (0x198)” on IF Composer 2013
When following Fortran code is executed on the Intel Fortran Composer 2013 the compiler triggers a breakpoint at write function and retuns code 408:
character*20 date_char
character*10 ...
0
votes
1answer
129 views
Read a text file to a string using fortran77
Is it possible to read a text file to a string using fortran77.
I actually have a text file in the following format
Some comments
Some comments
n1 m1 comment_with_unknown_number_of_words
..m1 ...
2
votes
3answers
189 views
Making multiple modules from multiple common blocks fortran 77
Currently in my program I have several common blocks spread across several subprograms and functions. I sometimes forget to change all instances of a common block as I add variables to it. I want to ...
2
votes
1answer
79 views
Odd Fortran Pointer Syntax
In some Fortran 77 code I have to deal with, there are pointers declared in a very odd way,
pointer (iuu , uu ), (ivv , vv ),
$ (it , t ), (iq , q ), ...
-1
votes
1answer
93 views
interface for fortran 77 in 95 program
I am quite new to fortran, and only write in fortran 95 and 2003. Now I have a program that is mainly written in 95, but it is completely in fortran 77 syntax and also contains some 77 functins.
Now ...
0
votes
1answer
231 views
Intel Fortran Compiler with large file size
I have a large piece of legacy code that is written in Fortran 77. I am compiling it and running it with the Intel Fortran Compiler (Version 11?). I recently ran into an issue where the output file ...
0
votes
1answer
43 views
Read specified number on reals on line
I'm writing a program in Fortran 77 and I need to read a specified number of REAL numbers on one line. For example, the input may look like the following:
1.0 2.0 3.0 4.0
The number of values on one ...
0
votes
0answers
104 views
Using gnu plot to plot a line-plot from a fortran 77 program
I have the following code:
PROGRAM EULER
REAL A,B,X,H
INTEGER N
PARAMETER (A=0.0,B=2.9884,N=10)
EXTERNAL RHS
REAL Y(0:N)
H=(B-A)/N
X=XIN+H
10 ...
1
vote
2answers
117 views
Linking Fortran 77 Program with C++ dll
I was reading this SO question: Linking fortran and c++ binaries using gcc.
Could someone explain if it is possible do similar stuff with fortran 77 with C++?
I need to extract some subroutines from ...
1
vote
2answers
93 views
Determining type of variables not declared at top of Fortran subroutine
I am working with a legacy Fortran 77 code subroutine where the parameter types are not declared at the top of the code block.
Here is a snippet showing the very top of the subroutine.
...
0
votes
1answer
82 views
Which Fortran 77 format specifiers will never be used for input?
Still working on making a fortran I/O for C#. My limited fortran experience doesn't help really, so I once again need some advice from experts.
I'm just concerned with Fortran 77 and data input at ...
0
votes
1answer
180 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,*) ...
1
vote
2answers
272 views
Fortran: Calling a Subroutine in a Function
I am building a program that must call a subroutine in a function subprogram and be able to call the same subroutine in the main program.
program main
implicit double precision (a-h,o-z)
parameter ...
1
vote
0answers
41 views
store result in a column from fortran 77
I am converting one of my codes to fortran 77, and I am having a problem regarding storing the results.
I used the following code
OPEN(UNIT=21, FILE='name.TXT', STATUS='REPLACE')
WRITE(UNIT = 21,*) ...
1
vote
3answers
269 views
Fortran 'call' statement: what can it actually call?
I've inherited about 400 lines of very weirdly written Fortran 77 code, and I'm trying to analyze it step by step to make it clear in my mind.
Anyway, I have an header-like file (actually a .h, but ...
1
vote
3answers
107 views
Accessing text data files from a static library function
How to I enable a static library to pull in data available in ascii data files?
I am trying to add a model to a simulation as a library which contains functions that read data from data files. I am ...
0
votes
2answers
279 views
What's the difference between Compaq Visual Fortran and GNU Fortran?
Under Linux, I used gfortran and failed to compile some Fortran 77 codes which are developed on Compaq Visual Fortran 6.5 (CVF) under Windows. Some errors are related to different keywords change, ...
0
votes
1answer
108 views
error “startio error: error in format” with fortran 77 program
I am trying to run some old legacy fortran 77 code and it is giving me an error I cannot figure out. The program was compiled with g77.
Here is the output when run:
Reading data from file: j.cmp
...
1
vote
1answer
367 views
MPI Fortran code error on a single PC
Recently I was trying to compile and run my mpi code on a single machine (Ubuntu 12.04 - 64 bits core i7 2670 QM) I installed mpich2 version 1.2 using the following configuration:
./configure ...
1
vote
0answers
88 views
fortran, how to make several copies of a program using module or interface?
I want to do a double integration using CGAUSS, a FORTRAN program in cernlib. I have to make two copies CGAUSS1 and CGAUSS2 in order to avoid CGAUSS call itself.
But I do not find the original CGAUSS ...
0
votes
0answers
45 views
how to use ftnchek on mac
I need to find the uninitialized variables in my fortran77 code. I have installed a fortran syntax checker ftnchek which is a static analyser for fortran 77. But i am unable to understand how to use ...
1
vote
0answers
202 views
BLAS library incompatible with Fortran 77 compiler settings
I'm trying to install Octave-3.6.2 from source on Ubuntu 12.04 with KDE desktop but when I run the Octave configure script I get this error
BLAS library was detected but found incompatible with your ...
0
votes
1answer
164 views
Implicit real conversion to integer in (IBM)-Fortran-IV
I'm rewriting an old IBM-Fortran program to modern Fortran-90 and I've encountered the following expressions:
N1=A/B+1.000001
N2=A/B+1. -1.E-5
N3=A/B+1.E-05
As far as I know, in the old Fortran way ...
0
votes
1answer
615 views
Fortran 77 decimals in real variables [closed]
I have to program in Fortran 77 and I never use it.
I have a problem with real variables. I need to round a value to a certain number of decimal places before performing a calculation.
I see the ...
1
vote
1answer
153 views
How to solve exponential equation in fortran?
Can anyone tell me how to solve exponential equations in FORTRAN (equation having two unknowns, exponent contain one unknown). I want to find two unknowns:
...
2
votes
2answers
557 views
How to run FORTRAN program on all the files in a folder?
As of now, I'm opening one file with a .txt extension and running a fortran code on it. However, if I want the program to run on on all the files in a folder with all kinds of extensions. How do I do ...
4
votes
1answer
894 views
How to print Fortran arrays in GDB?
In C/C++ to print a pointer as an array I usually do name@dimension. What is the equivalent for Fortran77?

