times

open operator fun NDStructure<T>.times(arg: T): NDStructure<T>

Multiplies an ND structure by an element of it.

Return

the product.

Parameters

<receiver>

the multiplicand.

arg

the multiplier.

open operator fun T.times(arg: NDStructure<T>): NDStructure<T>

Multiplies an element by a ND structure of it.

Return

the product.

Parameters

<receiver>

the multiplicand.

arg

the multiplier.