scipp.multiply#

scipp.multiply(left, right)#

Element-wise product.

Equivalent to:

left * right

In cases where the order of the operands matters, e.g. with vectors or matrices, it is as shown above.

Parameters
Returns

Union[Variable, DataArray, Dataset] – Product of left and right.

Note

See the guide on computation for general concepts and broadcasting behavior.