Hello,
Using the code below under sas 9.4 sends this message "
ERROR: Not enough memory to store all matrices."
Please, could advise a solution
data test;
set sashelp.cars;
do i= 1 to 10000;
output;
end;
run;
proc iml;
use test;
read all var _ALL_ into A[colname=varNames];
close test;
quit;
ERROR: Not enough memory to store all matrices.
statement : READ at line 36 column 2