| %>>% | R Documentation |
Creates a PSD constraint: e1 - e2 is positive semidefinite.
This is the R equivalent of Python's A >> B.
e1 %>>% e2
e1, e2 |
CVXR expressions or numeric matrices. |
A PSD constraint object.
PSD()
## Not run:
X <- Variable(3, 3, symmetric = TRUE)
constr <- X %>>% diag(3) # X - I is PSD
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.