本文簡要介紹 python 語言中 scipy.sparse.block
的用法。
用法:
scipy.sparse.block(blocks, *, format=None, dtype=None)#
從稀疏構建稀疏數組sub-blocks
- blocks: array_like
具有兼容形狀的稀疏陣列網格。 None 條目意味著 all-zero 數組。
- format: {‘bsr’, ‘coo’, ‘csc’, ‘csr’, ‘dia’, ‘dok’, ‘lil’},可選
結果的稀疏格式(例如“csr”)。默認情況下,返回適當的稀疏數組格式。此選擇可能會發生變化。
- dtype: dtype,可選
輸出數組的數據類型。如果未給出,則數據類型由塊的數據類型確定。
- block: 稀疏數組
參數 ::
返回 ::
例子:
>>> from scipy.sparse import coo_array, block >>> A = coo_array([[1, 2], [3, 4]]) >>> B = coo_array([[5], [6]]) >>> C = coo_array([[7]]) >>> block([[A, B], [None, C]]).toarray() array([[1, 2, 5], [3, 4, 6], [0, 0, 7]])
>>> block([[A, None], [None, C]]).toarray() array([[1, 2, 0], [3, 4, 0], [0, 0, 7]])
相關用法
- Python SciPy sparse.block_diag用法及代碼示例
- 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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。