Learn R Programming

dsBase (version 6.3.3)

matrixTransposeDS: matrixTransposeDS serverside assign function called by ds.matrixTranspose

Description

Transposes a matrix A and writes the output to the serverside

Usage

matrixTransposeDS(M1.name = NULL)

Value

Output is the matrix representing the transpose of A which is written to the serverside. For more details see help for ds.matrixTranspose

Arguments

M1.name

A character string specifying the name of the matrix to be transposed

Author

Paul Burton for DataSHIELD Development Team

Details

Undertakes standard matrix transposition. This operation converts matrix A to matrix C where element C[i,j] of matrix C equals element A[j,i] of matrix A. Matrix A therefore has the same number of rows as matrix C has columns and vice versa.