dot

sparse.dot(a, b)[source]

Perform the equivalent of numpy.dot on two arrays.

Parameters

b (a,) – The arrays to perform the dot operation on.

Returns

The result of the operation.

Return type

Union[COO, numpy.ndarray]

Raises

ValueError – If all arguments don’t have zero fill-values.

See also

numpy.dot()

NumPy equivalent function.

COO.dot()

Equivalent function for COO objects.