本文簡要介紹 python 語言中 scipy.sparse.block_diag
的用法。
用法:
scipy.sparse.block_diag(mats, format=None, dtype=None)#
從提供的矩陣構建塊對角稀疏矩陣或數組。
- mats: 矩陣或數組的序列
輸入矩陣或數組。
- format: str,可選
結果的稀疏格式(例如“csr”)。如果未給出,結果將以“coo” 格式返回。
- dtype: dtype 說明符,可選
輸出的數據類型。如果未給出,則數據類型由塊的數據類型確定。
- res: 稀疏矩陣或數組
如果至少一個輸入是稀疏數組,則輸出也是稀疏數組。否則輸出是稀疏矩陣。
參數 ::
返回 ::
注意:
例子:
>>> from scipy.sparse import coo_array, block_diag >>> A = coo_array([[1, 2], [3, 4]]) >>> B = coo_array([[5], [6]]) >>> C = coo_array([[7]]) >>> block_diag((A, B, C)).toarray() array([[1, 2, 0, 0], [3, 4, 0, 0], [0, 0, 5, 0], [0, 0, 6, 0], [0, 0, 0, 7]])
相關用法
- Python SciPy sparse.block用法及代碼示例
- Python SciPy sparse.bmat用法及代碼示例
- Python SciPy sparse.bsr_matrix用法及代碼示例
- Python SciPy sparse.bsr_array用法及代碼示例
- Python SciPy sparse.isspmatrix用法及代碼示例
- Python SciPy sparse.save_npz用法及代碼示例
- Python SciPy sparse.issparse用法及代碼示例
- Python SciPy sparse.coo_matrix用法及代碼示例
- Python SciPy sparse.isspmatrix_csc用法及代碼示例
- Python SciPy sparse.isspmatrix_csr用法及代碼示例
- Python SciPy sparse.tril用法及代碼示例
- Python SciPy sparse.coo_array用法及代碼示例
- Python SciPy sparse.dia_array用法及代碼示例
- Python SciPy sparse.hstack用法及代碼示例
- Python SciPy sparse.rand用法及代碼示例
- Python SciPy sparse.dia_matrix用法及代碼示例
- Python SciPy sparse.find用法及代碼示例
- Python SciPy sparse.isspmatrix_dia用法及代碼示例
- Python SciPy sparse.isspmatrix_lil用法及代碼示例
- Python SciPy sparse.csc_matrix用法及代碼示例
- Python SciPy sparse.diags用法及代碼示例
- Python SciPy sparse.vstack用法及代碼示例
- Python SciPy sparse.dok_matrix用法及代碼示例
- Python SciPy sparse.kron用法及代碼示例
- Python SciPy sparse.random用法及代碼示例
注:本文由純淨天空篩選整理自scipy.org大神的英文原創作品 scipy.sparse.block_diag。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。