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
What's MEMSIZE set to in your config file?
The system option that Reeza mentions is discussed in this article: "Large matrices in SAS/IML 14.1"
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
Learn how to run multiple linear regression models with and without interactions, presented by SAS user Alex Chaplin.
Find more tutorials on the SAS Users YouTube channel.