dot¶
-
sparse.dot(a, b)[source]¶ Perform the equivalent of
numpy.doton two arrays.Parameters: b (a,) – The arrays to perform the dotoperation 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.