本文简要介绍 python 语言中 scipy.sparse.isspmatrix_lil
的用法。
用法:
scipy.sparse.isspmatrix_lil(x)#
x 是lil_matrix 类型的吗?
- x:
检查对象是否为 lil 矩阵
- bool
如果 x 是一个 lil 矩阵,则为 True,否则为 False
参数 ::
返回 ::
例子:
>>> from scipy.sparse import lil_array, lil_matrix, coo_matrix, isspmatrix_lil >>> isspmatrix_lil(lil_matrix([[5]])) True >>> isspmatrix_lil(lil_array([[5]])) False >>> isspmatrix_lil(coo_matrix([[5]])) False
相关用法
- Python SciPy sparse.isspmatrix_csc用法及代码示例
- Python SciPy sparse.isspmatrix_csr用法及代码示例
- Python SciPy sparse.isspmatrix_dia用法及代码示例
- Python SciPy sparse.isspmatrix_coo用法及代码示例
- Python SciPy sparse.isspmatrix_dok用法及代码示例
- 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_lil。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。