Mat.rowMultiply

Multiplies a row by a factor.

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

Parameters

row size_t

The row number, starting from 0.

factor T

The factor to multiply by.

Return Value

Type: Mat!(T, rowCount, colCount)

A reference to this matrix, for method chaining.

Meta