transpose

fun transpose(matrix: Matrix2, result: Matrix2): Matrix2(source)

Computes the transpose of the provided matrix.

Return

The modified result parameter.

Parameters

matrix

The matrix to transpose.

result

The object onto which to store the result.

See also