News

Like one-dimensional array variables, a two-dimensional array variable is associated with a .length property, which returns the length of the row array. For example, temperatures1.length returns 2.
The array contains ten variables: five temperature measures (t1 through t5) from two cities (c1 and c2): array temprg{2,5} c1t1-c1t5 c2t1-c2t5; SAS places variables into a multidimensional array by ...
A two-dimensional array is declared using two values - the number of rows and the number of columns. For example: array score = [1,9] - would give an array with two rows and ten columns ...