Date: Fri, 25 Aug 2000 16:55:41 -0400
Reply-To: John Jones <jonesj@PHARMARESEARCH.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: John Jones <jonesj@PHARMARESEARCH.COM>
Subject: Re: quadratic programming
In-Reply-To: <200008252007.QAA21977@chef.stat.vt.edu>
Content-Type: text/plain; charset="us-ascii"; format=flowed
What is quadratic programming?
data shmata;
do x=1 to 10;
do y= 1 to 10;
z=(x**2)+(y**2)-(2*x*y)
output;
end;
end;
run;
At 04:07 PM 8/25/00 -0400, Michele Marini wrote:
>I am sorry that this is not SAS-related. I am looking for a program that
>might
>have an algorithm written to do quadratic programming. The only true
>program I
>have looked at is Mathematica and quadratic programming is not listed. I would
>truly appreciate if anyone has any suggestions or insights.
>
>Thanks in advance.
>
>Michele Marini
>Statistics Department
>Virginia Tech
>Blacksburg, VA 24061-0439
>(540) 231-8315
|