transpose: Transpose of a matrix

View source: R/matrix.R

Transpose of a matrixR Documentation

Transpose of a matrix

Description

Transpose of a matrix.

Usage

transpose(x)

Arguments

x

A numerical square matrix with data.

Value

The transposed matrix.

Author(s)

Manos Papadakis

R implementation and documentation: Manos Papadakis <papadakm95@gmail.com>.

References

Gilbert Strang (2006). Linear Algebra and its Applications (4th edition).

See Also

nth, colMaxs, colMins, colrange

Examples

x <- matrix( rnorm(100 * 100), ncol = 100, nrow=100 )
transpose(x) #t(x)

x<-NULL

Rfast documentation built on Nov. 9, 2023, 5:06 p.m.