scipy 1.8.0 Pypi GitHub Homepage
Other Docs
ParametersBackRef
spdiags(data, diags, m, n, format=None)

Parameters

data : array_like

Matrix diagonals stored row-wise

diags : sequence of int or an int

Diagonals to set:

  • k = 0 the main diagonal

  • k > 0 the kth upper diagonal

  • k < 0 the kth lower diagonal

m, n : int

Shape of the result

format : str, optional

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.

See Also

dia_matrix

the sparse DIAgonal format.

diags

more convenient form of this function

Examples

>>> from scipy.sparse import spdiags
... 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]])
See :

Back References

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

Local connectivity graph

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


GitHub : /scipy/sparse/_construct.py#26
type: <class 'function'>
Commit: