MatchingBackend.multiply#

abstract MatchingBackend.multiply(arr1, arr2, out=None)[source]#

Element-wise multiplication of arrays.

Parameters:
arr1BackendArray

Input array.

arr2BackendArray

Input array.

outBackendArray, optional

Output array to write the result to. Returns a new array by default.

Returns:
BackendArray

Element-wise product of the input arrays.