<static> transposeMatrix(array) → {Array.<Array.<any>>}
Transposes the elements of the given matrix (array of arrays).
Parameters
Name | Type | Description |
---|---|---|
array | Array.<Array.<any>> | The matrix to transpose. |
Returns
Array.<Array.<any>> -
A new transposed matrix
- Source code: utils/ArrayUtils.js (Line 101)
Please login to continue.