
Given a LazyMatrix x, t returns the transpose of x.
t-LazyMatrix-method.RdGiven a LazyMatrix x, t returns the transpose of x.
Usage
# S4 method for class 'LazyMatrix'
t(x)Examples
mat_a <- base::matrix(rep(1, 6), nrow=2, ncol=3)
lazy_a <- LazyMatrix(mat_a, "sd", "mean")
lazy_t <- t(lazy_a)