Date: Tue, 27 Dec 2005 23:44:27 -0800
Reply-To: shiling99@YAHOO.COM
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: shiling99@YAHOO.COM
Organization: http://groups.google.com
Subject: Re: Solving Polynomial Equations
In-Reply-To: <1135625387.919174.213290@g14g2000cwa.googlegroups.com>
Content-Type: text/plain; charset="iso-8859-1"
The following example may give u some clues.
HTH
data dummy;
do x=-0.5,-1.8,-4;output;end;
run;
proc model ;
endogenous y;
exogenous x;
(x+1)*(x+2)*(x+3)-y=0;
y=0;
solve y x/out=b;
run;
quit;
proc print; run;
|