Mat.div

Divides this matrix by a factor.

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

Parameters

factor T

The factor to divide by.

Return Value

Type: Mat!(T, rowCount, colCount)

A reference to this matrix, for method chaining.

Meta