Matrix.transposed

struct Matrix(E, uint rows_, uint cols_, Layout layout = Layout.rowMajor)
@property const
transposed
()
()
if (
rows_ >= 1 &&
cols_ >= 1
)

Return Value

Type: Matrix!(E, cols, rows)

a transposed copy of the matrix.

Meta