| math_atoms | R Documentation |
CVXR registers methods so that standard R functions create the
appropriate atoms when applied to Expression objects.
For CVXR expressions, computes the matrix/vector norm atom.
For other inputs, falls through to Matrix::norm which
dispatches via S4 for both Matrix and base matrix objects.
For CVXR expressions, computes the standard deviation atom (ddof=0 by default,
matching CVXPY/numpy convention). For numeric inputs, falls through to
sd.
For CVXR expressions, computes the variance atom (ddof=0 by default).
For numeric inputs, falls through to var.
For CVXR expressions, computes the outer product of two vectors.
For other inputs, falls through to outer.
For CVXR expressions, dispatches to DiagVec (vector to
diagonal matrix) or DiagMat (extract diagonal from matrix),
matching CVXPY's cp.diag() behavior. For other inputs, falls
through to Matrix::diag which dispatches via S4 for both Matrix
and base matrix objects.
norm(x, type = "2", ...)
sd(x, ...)
var(x, ...)
outer(X, Y, ...)
diag(x, nrow, ncol, names = TRUE, k = 0L)
x |
An Expression, matrix, vector, or scalar. |
type |
Norm type: |
... |
For non-Expression inputs: passed to |
X |
An Expression or numeric. |
Y |
An Expression or numeric. |
nrow |
For non-Expression: passed to |
ncol |
For non-Expression: passed to |
names |
For non-Expression: passed to |
k |
Integer diagonal offset for Expressions only. |
The k parameter (off-diagonal offset) is only available for
Expression inputs. For the full-featured version with k on
non-Expression inputs, use DiagVec or DiagMat
directly.
An Expression or numeric value.
An Expression or numeric value.
An Expression or numeric value.
An Expression or matrix.
An Expression, matrix, or vector.
abs(x)Absolute value (convex, nonneg)
exp(x)Exponential (convex, positive)
log(x)Natural logarithm (concave, domain x >= 0)
sqrt(x)Square root via power(x, 0.5) (concave)
log1p(x)log(1+x) compound expression (concave)
log2(x), log10(x)Base-2/10 logarithm
cumsum(x)Cumulative sum (affine)
cummax(x)Cumulative max (convex)
cumprod(x)Cumulative product
ceiling(x), floor(x)Round up/down (MIP)
sum(x)Sum all entries (affine)
max(x)Maximum entry (convex)
min(x)Minimum entry (concave)
mean(x)Arithmetic mean; pass axis/keepdims via ...
diff(x)First-order differences; also cvxr_diff
These mask the base/stats versions and dispatch on argument type:
norm(x)2-norm; use type for "1", "I" (infinity), "F" (Frobenius)
sd(x)Standard deviation (ddof=0 for expressions)
var(x)Variance (ddof=0 for expressions)
outer(X, Y)Outer product of two vector expressions
For axis-aware reductions, keepdims, or other options not available
through the standard interface, use the explicit functions:
cvxr_norm, cvxr_mean, cvxr_diff,
cvxr_std, cvxr_var, cvxr_outer.
power, sum_entries,
max_entries, min_entries
cvxr_norm for the full-featured version with
axis and keepdims arguments
cvxr_std for the full-featured version
cvxr_var for the full-featured version
cvxr_outer for the CVXR-specific version
DiagVec, DiagMat
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.