Difference between revisions 3450827 and 3504750 on enwikibooks

{{split}}
[[File:CCBYSA yellow.png]]

=Preface=
The goal of this Fortran tutorial is to give a quick introduction to the most common features of the Fortran 77 programming language. A companion tutorial introduces the key enhancements found in Fortran 90. It is not a complete reference! Many details have been omitted. The presentation focuses on scientific computations, mainly linear algebra. The outline of this tutorial was inspired by the book "Handbook for Matrix Computations" by T.F. Coleman a(contracted; show full)    IOSTAT=  ios
    ERR=     err
    FILE=    fname
    STATUS=  sta
    ACCESS=  acc
    FORM=    frm
    RECL=    rl</source>
The unit number u is a number in the range 1-99 that denotes this file (the programmer may cho
ose any number but he/she has to make sure it is unique).

*<code>iostat</code> is the I/O status identifier and should be an integer variable. Upon return, ios is zero if the statement was successful and returns a non-zero value otherwise.
*<code>err</code> is a label which the program will jump to if there is an error.
*<code>fname</code> is a character string denoting the file name.
(contracted; show full) Sarah T. Whitlock and Paul H. Hargrove for use in the Fortran courses which have been offered under different course numbers each subsequent year. The original source of the material is here http://www.stanford.edu/class/me200c/tutorial_77/ Stanford university has re-released the material under a creative commons 3.0 attribution license. The tutorial was transferred to mediawiki format by Houraa Daher.

{{Shelves|Fortran programming language}}
{{alphabetical|F}}
{{status|100%}}

==References==
{{Reflist}}