;
ARRAYS -- Here, we explain how to specify arrays in DEBUG commands. In
the following examples, assume that A1 is a 10-element
one-dimensional array and that A2 is a 10x3 two-dimensional array.
A1 Refers to the entire array.
A1(*) Refers to the entire array.
A1(6) Refers to element 6 of the array.
A1[6] Same as previous. (Use square brackets or parentheses.)
A1(1:5) Refers to elements 1 through 5 of the array.
A2 Refers to the entire array.
A2[*,*] Refers to the entire array.
A2(3,2) Refers to element 3,2 of the array.
A2(5,*) Refers to elements 5,1; 5,2; and 5,3.
A2[7:9, 2] Refers to elements 7,2; 8,2; and 9,2.