Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

Matrix transpose

Matias Vazquez-Levi edited this page Feb 11, 2021 · 2 revisions

Back to Matrix

Matirx.transpose( matrix );

Static

This static function transposes a matrix.

  • matrix

    The matrix to be transposed

Example

const m1 = new Matrix(2,4);

m1.log({table:true});
const m2 = Matrix.transpose(m1);

m2.log({table:true});