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