1function gbtest55
2%GBTEST55 test disp
3
4% SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved.
5% SPDX-License-Identifier: GPL-3.0-or-later
6
7rng ('default') ;
8
9fprintf ('GrB/display method with no semi-colon:\n') ;
10H = GrB (rand (6)) %#ok<*NOPRT>
11
12fprintf ('default:\n') ;
13disp (H) ;
14for level = 0:5
15    disp (H, level) ;
16end
17
18fprintf ('gbtest55: all tests passed\n') ;
19
20