times

open operator fun times(other: F64Array): F64Array

Multiplies another array with this array. This is element-wise multiplication, not matrix multiplication.

Return

the product of the arrays

Parameters

other

the other array, must have the same shape as this array


open operator fun times(other: Double): F64Array

Multiplies each element in the array with a scalar.

Return

the product of the array and the scalar

Parameters

other

the scalar