xpose {float}R Documentation

xpose

Description

Transpose a float vector/matrix.

Usage

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

Arguments

x

A float vector/matrix.

Value

A float vector/matrix.

Examples

library(float)

s = flrunif(10, 3)
dim(s)
ts = t(s)
dim(ts)


[Package float version 0.3-2 Index]