Mat.copy

Gets a copy of this matrix.

struct Mat(T, size_t rowCount, size_t colCount)
const
Mat!(T, rowCount, colCount)
copy
()
if (
isNumeric!T &&
rowCount > 0
&&
colCount > 0
)

Return Value

Type: Mat!(T, rowCount, colCount)

A copy of this matrix.

Meta