本文簡要介紹 python 語言中 scipy.sparse.csr_matrix.diagonal
的用法。
用法:
csr_matrix.diagonal(k=0)#
返回數組/矩陣的第 k 個對角線。
- k: 整數,可選
獲取哪條對角線,對應元素a[i, i+k]。默認值:0(主對角線)。
參數 ::
例子:
>>> from scipy.sparse import csr_array >>> A = csr_array([[1, 2, 0], [0, 0, 3], [4, 0, 5]]) >>> A.diagonal() array([1, 0, 5]) >>> A.diagonal(k=1) array([2, 3])
相關用法
- Python SciPy csr_matrix.dot用法及代碼示例
- Python SciPy csr_matrix.nonzero用法及代碼示例
- Python SciPy csr_array.diagonal用法及代碼示例
- Python SciPy csr_array.nonzero用法及代碼示例
- Python SciPy csr_array.dot用法及代碼示例
- Python SciPy csc_array.diagonal用法及代碼示例
- Python SciPy csgraph.csgraph_to_dense用法及代碼示例
- Python SciPy csgraph.min_weight_full_bipartite_matching用法及代碼示例
- Python SciPy csc_matrix.nonzero用法及代碼示例
- Python SciPy csgraph.minimum_spanning_tree用法及代碼示例
- Python SciPy csgraph.breadth_first_order用法及代碼示例
- Python SciPy csc_matrix.diagonal用法及代碼示例
- Python SciPy csgraph.connected_components用法及代碼示例
- Python SciPy csgraph.dijkstra用法及代碼示例
- Python SciPy csc_matrix.dot用法及代碼示例
- 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 csc_array.nonzero用法及代碼示例
- Python SciPy csgraph.maximum_flow用法及代碼示例
- Python SciPy csgraph.csgraph_masked_from_dense用法及代碼示例
- Python SciPy csgraph.shortest_path用法及代碼示例
- Python SciPy csgraph.reconstruct_path用法及代碼示例
注:本文由純淨天空篩選整理自scipy.org大神的英文原創作品 scipy.sparse.csr_matrix.diagonal。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。