Minimize-class {CVXR} | R Documentation |
The Minimize class.
Description
This class represents an optimization objective for minimization.
Usage
Minimize(expr)
## S4 method for signature 'Minimize'
canonicalize(object)
## S4 method for signature 'Minimize'
is_dcp(object)
## S4 method for signature 'Minimize'
is_dgp(object)
Arguments
expr |
A scalar Expression to minimize. |
object |
A Minimize object. |
Methods (by generic)
-
canonicalize(Minimize)
: Pass on the target expression's objective and constraints. -
is_dcp(Minimize)
: A logical value indicating whether the objective is convex. -
is_dgp(Minimize)
: A logical value indicating whether the objective is log-log convex.
Slots
expr
A scalar Expression to minimize.
[Package CVXR version 1.0-14 Index]