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