1function s = ismatrix (G) %#ok<INUSD> 2%ISMATRIX always true for any GraphBLAS matrix. 3% ismatrix (G) is always true for any GraphBLAS matrix G. 4% 5% See also GrB/issparse, GrB/isvector, GrB/isscalar, GrB/full, GrB/isa, 6% GrB. 7 8% SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. 9% SPDX-License-Identifier: GPL-3.0-or-later 10 11s = true ; 12 13