scipy.sparse.csr_matrix. dot# csr_matrix.dot(other)[Quelle]# Gewöhnliches Skalarprodukt Beispiele Probieren Sie es in Ihrem Browser aus! >>> import numpy as np >>> from scipy.sparse import csr_array >>> A = csr_array([[1, 2, 0], [0, 0, 3], [4, 0, 5]]) >>> v = np.array([1, 0, -1]) >>> A.dot(v) array([ 1, -3, -1], dtype=int64) ZurückIn Tab öffnen