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:
  • left (VariableLike) – Left factor

  • right (VariableLike) – Right factor.

Returns:

VariableLike – Product of left and right.

Note

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