本文简要介绍 python 语言中 scipy.sparse.isspmatrix_dia
的用法。
用法:
scipy.sparse.isspmatrix_dia(x)#
x 是dia_matrix 类型的吗?
- x:
检查对象是否为直径矩阵
- bool
如果 x 是直径矩阵,则为 True,否则为 False
参数 ::
返回 ::
例子:
>>> from scipy.sparse import dia_array, dia_matrix, coo_matrix, isspmatrix_dia >>> isspmatrix_dia(dia_matrix([[5]])) True >>> isspmatrix_dia(dia_array([[5]])) False >>> isspmatrix_dia(coo_matrix([[5]])) False
相关用法
- Python SciPy sparse.isspmatrix_dok用法及代码示例
- Python SciPy sparse.isspmatrix_csc用法及代码示例
- Python SciPy sparse.isspmatrix_csr用法及代码示例
- Python SciPy sparse.isspmatrix_lil用法及代码示例
- Python SciPy sparse.isspmatrix_coo用法及代码示例
- Python SciPy sparse.isspmatrix_bsr用法及代码示例
- Python SciPy sparse.isspmatrix用法及代码示例
- Python SciPy sparse.issparse用法及代码示例
- Python SciPy sparse.identity用法及代码示例
- Python SciPy sparse.save_npz用法及代码示例
- Python SciPy sparse.coo_matrix用法及代码示例
- 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.csc_matrix用法及代码示例
- Python SciPy sparse.block_diag用法及代码示例
- Python SciPy sparse.diags用法及代码示例
- Python SciPy sparse.vstack用法及代码示例
- Python SciPy sparse.dok_matrix用法及代码示例
- Python SciPy sparse.kron用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.sparse.isspmatrix_dia。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。