GCXS.dot

GCXS.dot(other)[source]

Performs the equivalent of x.dot(y) for GCXS.

Parameters

other (Union[GCXS, COO, numpy.ndarray, scipy.sparse.spmatrix]) – The second operand of the dot product operation.

Returns

The result of the dot product. If the result turns out to be dense, then a dense array is returned, otherwise, a sparse array.

Return type

{GCXS, numpy.ndarray}

Raises

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

See also

dot

Equivalent function for two arguments.

numpy.dot

Numpy equivalent function.

scipy.sparse.csr_matrix.dot

Scipy equivalent function.