MathGroup Archive 2014

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

Search the Archive

Re: Compact formulation of array of constraints

  • To: mathgroup at smc.vnet.net
  • Subject: [mg132193] Re: Compact formulation of array of constraints
  • From: Ray Koopman <koopman at sfu.ca>
  • Date: Mon, 13 Jan 2014 02:24:25 -0500 (EST)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • Delivered-to: l-mathgroup@wolfram.com
  • Delivered-to: mathgroup-outx@smc.vnet.net
  • Delivered-to: mathgroup-newsendx@smc.vnet.net

If all the constraints must be satisfied then you need to AND them:

And @@ Array[x@# >= 0 &, 6, 0]

x[0] >= 0 && x[1] >= 0 && x[2] >= 0 && x[3] >= 0 && x[4] >= 0 && x[5] >= 0

----- Paul Smith <phhs80 at gmail.com> wrote:
> Dear All,
> 
> How can one formulate the set of constraints
> 
> x[1] >= 0, x[1] >= 0, x[2] >= 0, x[3] >= 0, x[4] >= 0, x[5] >= 0
> 
> by using a compact form?
> 
> Thanks in advance,
> 
> Paul




  • Prev by Date: Re: For 2014?
  • Next by Date: Re: For 2014?
  • Previous by thread: Re: Compact formulation of array of constraints
  • Next by thread: Re: Compact formulation of array of constraints