LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous (more recent) messageNext (less recent) messagePrevious (more recent) in topicNext (less recent) in topicPrevious (more recent) by same authorNext (less recent) by same authorPrevious page (July 2003, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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
Comments: To: "Huang, Ya" <yhuang@AMYLIN.COM>

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;


Back to: Top of message | Previous page | Main SAS-L page