times

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

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(source)

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(source)

Multiplies an element by a vector of it.

Receiver

the multiplicand.

the product.

Parameters

v

the multiplier.