1function test79
2%TEST79 run all matrices with test06
3
4% SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved.
5% SPDX-License-Identifier: Apache-2.0
6
7index = ssget ;
8f = find (index.nrows == index.ncols & index.isReal & index.nrows > 1000) ;
9
10[ignore i] = sort (index.nnz (f)) ;
11
12f = f (i) ;
13nmat = length (f) ;
14
15for k = 1:nmat
16    id = f (k) ;
17    Prob = ssget (id, index)
18    A = Prob.A ;
19    test06 (A, A, 0) ;
20end
21