times

open operator override fun Matrix<Double>.times(value: Double): Matrix<Double>

Multiplies a matrix by its element.

Parameters

<receiver>

the product.

value

the multiplier.

open operator override fun Point<Double>.times(value: Double): DoubleBuffer

Multiplies a vector by its element.

Parameters

<receiver>

the product.

value

the multiplier.

open operator override fun Double.times(v: Point<Double>): DoubleBuffer

Multiplies an element by a vector of it.

Parameters

<receiver>

the product.

v

the multiplier.