1 |
A number of properties are established by this declaration:
-
The type of the elements is integer.
-
Other possible types are real, logical, char, real*4, real*8 etc.
-
The rank of the array is two (two-dimensional)
-
The extent of the first dimension (the number of elements) is N.
-
The extent of the second dimension is 9
-
If the lower bound is 1, 1:N can be abbreviated as N
-
The shape of the array is [N,9] -- a vector consisting of the extents of the dimensions.
|