Logo

Programming-Idioms

History of Idiom 26 > diff from v58 to v59

Edit summary for version 59 by tkoenig:
New Fortran implementation by user [tkoenig]

Version 58

2019-09-26, 15:48:24

Version 59

2019-09-26, 17:12:36

Idiom #26 Create a 2-dimensional array

Declare and initialize a matrix x having m rows and n columns, containing real numbers.

Illustration

Idiom #26 Create a 2-dimensional array

Declare and initialize a matrix x having m rows and n columns, containing real numbers.

Illustration
Code
  real, dimension(n,m) :: x