plusAssign

open operator override fun Tensor<Int>.plusAssign(value: Int)(source)

Adds the scalar value to each element of this tensor.

Parameters

value

the number to be added to each element of this tensor.


open operator override fun Tensor<Int>.plusAssign(arg: StructureND<Int>)(source)

Each element of the tensor arg is added to each element of this tensor.

Parameters

arg

tensor to be added.