Real-class {CVXR} | R Documentation |
The Real class.
Description
This class represents the real part of an expression.
Usage
Real(expr)
## S4 method for signature 'Real'
to_numeric(object, values)
## S4 method for signature 'Real'
dim_from_args(object)
## S4 method for signature 'Real'
is_imag(object)
## S4 method for signature 'Real'
is_complex(object)
## S4 method for signature 'Real'
is_symmetric(object)
Arguments
expr |
An Expression representing a vector or matrix. |
object |
An Real object. |
values |
A list of arguments to the atom. |
Methods (by generic)
-
to_numeric(Real)
: The imaginary part of the given value. -
dim_from_args(Real)
: The dimensions of the atom. -
is_imag(Real)
: Is the atom imaginary? -
is_complex(Real)
: Is the atom complex valued? -
is_symmetric(Real)
: Is the atom symmetric?
Slots
expr
An Expression representing a vector or matrix.
[Package CVXR version 1.0-14 Index]