The information in this article applies to:
SUMMARY
FORTRAN is different from languages such as C and Pascal in the way that it
stores two-dimensional arrays in memory. Although array elements are
referenced in row major notation, i.e., (row, column), just as in C or
Pascal, FORTRAN stores two-dimensional arrays as one-dimensional column
arrays.
(1,1),(1,2),(1,3),(1,4),(2,1),(2,2),(2,3),(2,4),(3,1),(3,2),(3,3),(3,4)However, FORTRAN will store the same array in the following sequence: (1,1),(2,1),(3,1),(1,2),(2,2),(3,2),(1,3),(2,3),(3,3),(1,4),(2,4),(3,4) Additional query words: kbinf 4.00 4.10 5.10 1.00
Keywords : kbFortranPS kbLangFortran |
Last Reviewed: November 3, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |