scipy.sparse.
isspmatrix_coo#
- scipy.sparse.isspmatrix_coo(x)[源代码]#
x 是否为 coo_matrix 类型?
- 参数:
- x
要检查是否为 coo 矩阵的对象
- 返回:
- bool
如果 x 是 coo 矩阵,则为 True,否则为 False
示例
>>> from scipy.sparse import coo_array, coo_matrix, csr_matrix, isspmatrix_coo >>> isspmatrix_coo(coo_matrix([[5]])) True >>> isspmatrix_coo(coo_array([[5]])) False >>> isspmatrix_coo(csr_matrix([[5]])) False