Skip to content

Latest commit

 

History

History
23 lines (13 loc) · 608 Bytes

File metadata and controls

23 lines (13 loc) · 608 Bytes

Home > @josh-brown/vector > FloatMatrix > transpose

FloatMatrix.transpose() method

Returns the transpose of the matrix

Signature:

transpose(): Matrix<number>;

Returns:

Matrix<number>

The transpose

Remarks

The transpose of a matrix A is the unique matrix for which the entry at (i,j) is equal to the entry in A at (j, i)