times

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

Multiplies a matrix by its element.

Receiver

the multiplicand.

the product.

Parameters

value

the multiplier.


open operator fun T.times(m: Matrix<T>): Matrix<T>(source)

Multiplies an element by a matrix of it.

Receiver

the multiplicand.

the product.

Parameters

m

the multiplier.


open operator fun Point<T>.times(value: T): Point<T>(source)

Multiplies a vector by its element.

Receiver

the multiplicand.

the product.

Parameters

value

the multiplier.


open operator fun T.times(v: Point<T>): Point<T>(source)

Multiplies an element by a vector of it.

Receiver

the multiplicand.

the product.

Parameters

v

the multiplier.