transposeR Documentation

Matrix Transpose

Description

Given a matrix x, t returns the transpose of x.

Usage

## S4 method for signature 'fm'
t(x)

## S4 method for signature 'fmV'
t(x)

Arguments

x

a FlashR matrix.

Value

a matrix.

Examples

mat <- fm.runif.matrix(100, 10)
t(mat)