Transpose of a matrix | R Documentation |
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).
nth, colMaxs, colMins, colrange
x <- matrix( rnorm(500 * 500), ncol = 500, nrow=500 ) system.time( transpose(x) ) system.time( t(x) ) x<-NULL
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.