This example demonstrates the positions created in one, two, and three dimensional numerical arrays when they are declared using NUMBER.
$$
$$ Declaration
$$
NUMBER/NUMS(2)
column-1 column-2
row-1 NUMS(1) NUMS(2)
$$
$$ Declaration
$$
NUMBER/NUM(2,2)
column-1 column-2
row-1 NUMS(1,1) NUMS(2,1)
row-2 NUMS(1,2) NUMS(2,2)
$$
$$ Declaration
$$
NUMBER/NUM(2,2,2)
column-1 column-2
(layer-1)
row-1 NUMS(1,1,1) NUMS(2,1,1)
row-2 NUMS(1,2,1) NUMS(2,2,1)
(layer-2)
row-1 NUMS(1,1,2) NUMS(2,1,2)
row-2 NUMS(1,2,2) NUMS(2,2,2)