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(100 * 100), ncol = 100, nrow=100 )
transpose(x) #t(x)
x<-NULL
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.