t.Expression {CVXR} | R Documentation |
Matrix Transpose
Description
The transpose of a matrix.
Usage
## S3 method for class 'Expression'
t(x)
## S4 method for signature 'Expression'
t(x)
Arguments
x |
An Expression representing a matrix. |
Value
An Expression representing the transposed matrix.
Examples
x <- Variable(3, 4)
t(x)
[Package CVXR version 1.0-14 Index]