MaxEntries-class {CVXR} | R Documentation |
The MaxEntries class.
Description
The maximum of an expression.
Usage
MaxEntries(x, axis = NA_real_, keepdims = FALSE)
## S4 method for signature 'MaxEntries'
to_numeric(object, values)
## S4 method for signature 'MaxEntries'
sign_from_args(object)
## S4 method for signature 'MaxEntries'
is_atom_convex(object)
## S4 method for signature 'MaxEntries'
is_atom_concave(object)
## S4 method for signature 'MaxEntries'
is_atom_log_log_convex(object)
## S4 method for signature 'MaxEntries'
is_atom_log_log_concave(object)
## S4 method for signature 'MaxEntries'
is_incr(object, idx)
## S4 method for signature 'MaxEntries'
is_decr(object, idx)
## S4 method for signature 'MaxEntries'
is_pwl(object)
## S4 method for signature 'MaxEntries'
.grad(object, values)
## S4 method for signature 'MaxEntries'
.column_grad(object, value)
Arguments
x |
An Expression representing a vector or matrix. |
axis |
(Optional) The dimension across which to apply the function: |
keepdims |
(Optional) Should dimensions be maintained when applying the atom along an axis? If |
object |
A MaxEntries object. |
values |
A list of numeric values for the arguments |
idx |
An index into the atom. |
value |
A numeric value |
Methods (by generic)
-
to_numeric(MaxEntries)
: The largest entry inx
. -
sign_from_args(MaxEntries)
: The sign of the atom. -
is_atom_convex(MaxEntries)
: The atom is convex. -
is_atom_concave(MaxEntries)
: The atom is not concave. -
is_atom_log_log_convex(MaxEntries)
: Is the atom log-log convex. -
is_atom_log_log_concave(MaxEntries)
: Is the atom log-log concave. -
is_incr(MaxEntries)
: The atom is weakly increasing in every argument. -
is_decr(MaxEntries)
: The atom is not weakly decreasing in any argument. -
is_pwl(MaxEntries)
: Isx
piecewise linear? -
.grad(MaxEntries)
: Gives the (sub/super)gradient of the atom w.r.t. each variable -
.column_grad(MaxEntries)
: Gives the (sub/super)gradient of the atom w.r.t. each column variable
Slots
x
An Expression representing a vector or matrix.
axis
(Optional) The dimension across which to apply the function:
1
indicates rows,2
indicates columns, andNA
indicates rows and columns. The default isNA
.keepdims
(Optional) Should dimensions be maintained when applying the atom along an axis? If
FALSE
, result will be collapsed into ann x 1
column vector. The default isFALSE
.