LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (December 2005, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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
Comments: To: sas-l@uga.edu
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;


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