ExpCone-class {CVXR} | R Documentation |
The ExpCone class.
Description
This class represents a reformulated exponential cone constraint operating elementwise on .
Usage
ExpCone(x, y, z, id = NA_integer_)
## S4 method for signature 'ExpCone'
as.character(x)
## S4 method for signature 'ExpCone'
residual(object)
## S4 method for signature 'ExpCone'
size(object)
## S4 method for signature 'ExpCone'
num_cones(object)
## S4 method for signature 'ExpCone'
cone_sizes(object)
## S4 method for signature 'ExpCone'
is_dcp(object)
## S4 method for signature 'ExpCone'
is_dgp(object)
## S4 method for signature 'ExpCone'
canonicalize(object)
Arguments
x |
The variable |
y |
The variable |
z |
The variable |
id |
(Optional) A numeric value representing the constraint ID. |
object |
A ExpCone object. |
Details
Original cone:
Reformulated cone:
Methods (by generic)
-
residual(ExpCone)
: The size of thex
argument. -
size(ExpCone)
: The number of entries in the combined cones. -
num_cones(ExpCone)
: The number of elementwise cones. -
cone_sizes(ExpCone)
: The dimensions of the exponential cones. -
is_dcp(ExpCone)
: An exponential constraint is DCP if each argument is affine. -
is_dgp(ExpCone)
: Is the constraint DGP? -
canonicalize(ExpCone)
: Canonicalizes by converting expressions to LinOps.
Slots
x
The variable
in the exponential cone.
y
The variable
in the exponential cone.
z
The variable
in the exponential cone.