I create a matrix that is 45x45 fairly using my a data step. However, I need to parse it down to 30x30 and the output from the procedure is nonsensical for me (it does not matter how the input data file is sorted). Thus, I need to delete the same rows and columns from the matrix: to_delete=(1,4,20,23,26,26,30,31,32,33,34,35,36,37,38) So the final matrix would only contain row 2,3,5,6...etc of the original matrix and be square(nxn) I have been stumped thus far. I have been trying variations of this data output;set input; keep _COL_ =: to_delete;run;quit;
... View more