Answers for "reshape SAS matrix"

0

reshape SAS matrix

proc iml;
x = 1:12;               /** 1 x 12 matrix                  **/
s = shape(x, 4, 3);     /** reshape data into 4 x 3 matrix **/
print s;
Posted by: Guest on June-17-2021

Browse Popular Code Answers by Language