Date: Sat, 5 Jul 2003 12:54:01 -0400
Reply-To: Ken Keung <1800okla@HANMAIL.NET>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Ken Keung <1800okla@HANMAIL.NET>
Subject: Re: A computation question : updated
Hi, Ya
I tried your code and it worked for 4 components case.
However, the program stopped for 20 component case because of the
insufficient memory even though I have 512 MB memory.
The problem in your code seems that it consumed too much memory in
"Proc format" step in your code.
Anyway, thank you very much for your time and effort.
Take care.
*================= Part of Ya Huang's code==================;
proc sql noprint;
select "'"||compress(c1||c2||c3)||"'="||put(temp,best.)
into :tmlst separated by ' '
from xx
;
proc format;
invalue tmp &tmlst;
run;
|