本文簡要介紹 python 語言中 scipy.sparse.spdiags
的用法。
用法:
scipy.sparse.spdiags(data, diags, m=None, n=None, format=None)#
從對角線返回一個稀疏矩陣。
- data: array_like
矩陣對角線按行存儲
- diags: int 或 int 的序列
要設置的對角線:
k = 0 主對角線
k > 0 第 k 個上對角線
k < 0 第 k 個下對角線
- m, n: int、元組、可選
結果的形狀。如果 n 為 None 並且 m 為給定元組,則形狀就是該元組。如果省略,則矩陣為方陣,其形狀為 len(data[0])。
- format: str,可選
結果的格式。默認情況下 (format=None) 會返回適當的稀疏矩陣格式。此選擇可能會發生變化。
參數 ::
例子:
>>> import numpy as np >>> from scipy.sparse import spdiags >>> data = np.array([[1, 2, 3, 4], [1, 2, 3, 4], [1, 2, 3, 4]]) >>> diags = np.array([0, -1, 2]) >>> spdiags(data, diags, 4, 4).toarray() array([[1, 0, 3, 0], [1, 2, 0, 4], [0, 2, 3, 0], [0, 0, 3, 4]])
相關用法
- Python SciPy sparse.save_npz用法及代碼示例
- Python SciPy sparse.isspmatrix用法及代碼示例
- 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.bmat用法及代碼示例
- 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.block_diag用法及代碼示例
- Python SciPy sparse.diags用法及代碼示例
- Python SciPy sparse.vstack用法及代碼示例
- Python SciPy sparse.dok_matrix用法及代碼示例
- Python SciPy sparse.kron用法及代碼示例
- Python SciPy sparse.random用法及代碼示例
- Python SciPy sparse.identity用法及代碼示例
- Python SciPy sparse.isspmatrix_coo用法及代碼示例
注:本文由純淨天空篩選整理自scipy.org大神的英文原創作品 scipy.sparse.spdiags。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。