Matrix.transpose

Returns transposed matrix

It can be used to "convert" Matrix to a row ordered matrix

struct Matrix(T, size_t dim_)
nothrow @nogc pure const
transpose
()
if (
__traits(isFloating, T) &&
dim_ >= 2
&&
dim_ <= 4
)

Meta