Mat.transpose

Gets the transpose of this matrix, and stores it in this matrix.

struct Mat(T, size_t rowCount, size_t colCount)
ref
Mat!(T, rowCount, colCount)
transpose
()
if (
isNumeric!T &&
rowCount > 0
&&
colCount > 0
)

Return Value

Type: Mat!(T, rowCount, colCount)

A reference to this matrix, for method chaining.

Meta