1function C = int8 (G) 2%INT8 cast a GraphBLAS matrix to MATLAB full int8 matrix. 3% C = int8 (G) typecasts the GrB matrix G to a MATLAB full int8 matrix. 4% The result C is full since MATLAB does not support sparse int8 5% matrices. 6% 7% To typecast the matrix G to a GraphBLAS sparse int8 matrix instead, use 8% C = GrB (G, 'int8'). 9% 10% See also GrB, GrB/double, GrB/complex, GrB/single, GrB/logical, 11% GrB/int16, GrB/int32, GrB/int64, GrB/uint8, GrB/uint16, GrB/uint32, 12% GrB/uint64. 13 14% SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. 15% SPDX-License-Identifier: GPL-3.0-or-later 16 17G = G.opaque ; 18desc.kind = 'full' ; 19C = gbfull (G, 'int8', int8 (0), desc) ; % export as a MATLAB full matrix 20 21