spdiags(data, diags, m, n, format=None)
Matrix diagonals stored row-wise
Diagonals to set:
k = 0 the main diagonal
k > 0 the kth upper diagonal
k < 0 the kth lower diagonal
Shape of the result
Format of the result. By default (format=None) an appropriate sparse matrix format is returned. This choice is subject to change.
Return a sparse matrix from diagonals.
dia_matrix
the sparse DIAgonal format.
diags
more convenient form of this function
>>> from scipy.sparse import spdiagsSee :
... data = np.array([[1, 2, 3, 4], [1, 2, 3, 4], [1, 2, 3, 4]])
... diags = np.array([0, -1, 2])
... spdiags(data, diags, 4, 4).toarray() array([[1, 0, 3, 0], [1, 2, 0, 4], [0, 2, 3, 0], [0, 0, 3, 4]])
The following pages refer to to this document either explicitly or contain code examples using this.
scipy.sparse._construct.diags
scipy.sparse.linalg._eigen.lobpcg.lobpcg.lobpcg
scipy.sparse._construct.spdiags
Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.
Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)
SVG is more flexible but power hungry; and does not scale well to 50 + nodes.
All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them