The transpose of a matrix.

# S3 method for Expression
t(x)

# S4 method for Expression
t(x)

Arguments

x

An Expression representing a matrix.

Value

An Expression representing the transposed matrix.

Examples

x <- Variable(3, 4)
t(x)
#> Transpose(varNA, character(0))