Matrix.transpose

Transpose of matrix (swaps rows and columns)

struct Matrix(T, size_t H, size_t W)
Matrix!(T, W, H)
transpose
()
if (
isNumeric!T &&
W > 0
&&
H > 0
)

Meta