times

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

Multiplies a matrix by its element.

Receiver

the multiplicand.

the product.

Parameters

value

the multiplier.


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

Multiplies a vector by its element.

Receiver

the multiplicand.

the product.

Parameters

value

the multiplier.


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

Multiplies an element by a vector of it.

Receiver

the multiplicand.

the product.

Parameters

v

the multiplier.