Using the earlier declarations, references can be made to:
A = 0
sets whole array A to zero;B = C + 1
adds one to all elements,
of C and then assigns each element to the
corresponding element of B.
A(1) = 0.0
sets one element to zero, B = A(3) + C(5,1)
sets whole array B to the sum of
two elements.
A(2:6) = 0
sets section of A to zero,B(-1:0,1:2) = C(1:2,2:3) + 1
adds one to the subsection
of C and assigns to the subsection of B.