scipy.sparse.
isspmatrix_lil#
- scipy.sparse.isspmatrix_lil(x)[source]#
Is x of lil_matrix type?
Warning
SciPy sparse is shifting from a sparse matrix interface to a sparse array interface. In the next few releases we expect to deprecate the sparse matrix interface. For documentation of the matrix interface, see the spmatrix interface docs. For guidance on converting existing code to sparse arrays, see Migration from spmatrix to sparray.
- Parameters:
- x
object to check for being a lil matrix
- Returns:
- bool
True if x is a lil matrix, False otherwise
Examples
>>> 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