t.Expression {CVXR} | R Documentation |
The transpose of a matrix.
## S3 method for class 'Expression'
t(x)
## S4 method for signature 'Expression'
t(x)
x |
An Expression representing a matrix. |
An Expression representing the transposed matrix.
x <- Variable(3, 4)
t(x)