This is an old version, view current version.
9.5 Compound elementwise multiplication and assignment
void operator.*=(vector x, vector y)
x .*= y is equivalent to x = x .* y.
Available since 2.17
void operator.*=(row_vector x, row_vector y)
x .*= y is equivalent to x = x .* y.
Available since 2.17
void operator.*=(matrix x, matrix y)
x .*= y is equivalent to x = x .* y.
Available since 2.17