本文简要介绍 python 语言中 scipy.sparse.csc_matrix.nonzero
的用法。
用法:
csc_matrix.nonzero()#
数组/矩阵的非零索引。
返回包含数组非零元素索引的数组 (row,col) 元组。
例子:
>>> 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]), array([0, 1, 2, 0, 2]))
相关用法
- Python SciPy csc_matrix.diagonal用法及代码示例
- Python SciPy csc_matrix.dot用法及代码示例
- Python SciPy csc_array.diagonal用法及代码示例
- Python SciPy csc_array.nonzero用法及代码示例
- Python SciPy csc_array.dot用法及代码示例
- Python SciPy csgraph.csgraph_to_dense用法及代码示例
- Python SciPy csgraph.min_weight_full_bipartite_matching用法及代码示例
- Python SciPy csgraph.minimum_spanning_tree用法及代码示例
- Python SciPy csr_array.diagonal用法及代码示例
- Python SciPy csgraph.breadth_first_order用法及代码示例
- Python SciPy csr_matrix.nonzero用法及代码示例
- Python SciPy csr_matrix.dot用法及代码示例
- Python SciPy csgraph.connected_components用法及代码示例
- Python SciPy csgraph.dijkstra用法及代码示例
- Python SciPy csr_array.nonzero用法及代码示例
- Python SciPy csgraph.breadth_first_tree用法及代码示例
- Python SciPy csgraph.csgraph_from_dense用法及代码示例
- Python SciPy csgraph.floyd_warshall用法及代码示例
- Python SciPy csgraph.bellman_ford用法及代码示例
- Python SciPy csgraph.csgraph_to_masked用法及代码示例
- Python SciPy csgraph.maximum_flow用法及代码示例
- Python SciPy csgraph.csgraph_masked_from_dense用法及代码示例
- Python SciPy csr_matrix.diagonal用法及代码示例
- Python SciPy csgraph.shortest_path用法及代码示例
- Python SciPy csgraph.reconstruct_path用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.sparse.csc_matrix.nonzero。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。