Transpose of a matrix
Transpose of a matrix.
transpose(x)
x |
A numerical square matrix with data. |
The transposed matrix.
Manos Papadakis
R implementation and documentation: Manos Papadakis <papadakm95@gmail.com>.
Gilbert Strang (2006). Linear Algebra and its Applications (4th edition).
x <- matrix( rnorm(500 * 500), ncol = 500, nrow=500 ) system.time( transpose(x) ) system.time( t(x) ) x<-NULL
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.