MathGroup Archive 2008

[Date Index] [Thread Index] [Author Index]

Search the Archive

convex optimization

  • To: mathgroup at smc.vnet.net
  • Subject: [mg92339] convex optimization
  • From: artg <grenander at gmail.com>
  • Date: Sat, 27 Sep 2008 22:23:33 -0400 (EDT)

What is the range of Mathematica's functionality in 'convex optimization' (as
defined on wikipedia). Many convex optimization problems can be very
concisely stated in Mathematica. Does it have SDP and 2nd-order cone
programs or is it necessary to purchase an addon package?

I just tried and was surprised it solved this sparse approximation problem:

n = 100; m = 200;
A = RandomReal[NormalDistribution[0, 1], {n, m}];
b = RandomReal[NormalDistribution[0, 1], n];
xs = Array[x, m];

res = NMinimize[{Norm[xs, 1], A.xs == b}, xs];
soln = Flatten[xs /. res[[2]]];

Total at Chop[A.soln - b] == 0
True
-- 
View this message in context: http://www.nabble.com/convex-optimization-tp19707800p19707800.html
Sent from the MathGroup mailing list archive at Nabble.com.



  • Prev by Date: convex optimization
  • Next by Date: Re: Redirecting input
  • Previous by thread: convex optimization
  • Next by thread: Re: convex optimization