scipy.sparse.dok_array.

nonzero#

dok_array.nonzero()[source]#

Nonzero indices of the array/matrix.

Returns:
rowndarray

Row indices of non-zero elements.

colndarray

Column indices of non-zero elements.

Examples

>>> from scipy.sparse import csr_array
>>> A = csr_array([[1, 2, 0], [0, 0, 3], [4, 0, 5]])
>>> A.nonzero()
(array([0, 0, 1, 2, 2], dtype=int32), array([0, 1, 2, 0, 2], dtype=int32))