1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
function s = gb_issymmetric (G, option, herm)
%GB_ISSYMMETRIC check if symmetric or Hermitian
% Implements issymmetric (G,option) and ishermitian (G,option).
% SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved.
% SPDX-License-Identifier: Apache-2.0
% FUTURE: this can be much faster; see spsym in CHOLMOD.
[m, n, type] = gbsize (G) ;
if (m ~= n)
s = false ;
else
if (isequal (type, 'logical'))
G = gbnew (G, 'double') ;
end
if (herm && gb_contains (type, 'complex'))
% T = G', complex conjugate transpose
desc.in0 = 'transpose' ;
T = gbapply ('conj', G, desc) ;
else
% T = G.', array transpose
T = gbtrans (G) ;
end
switch (option)
case { 'skew' }
% G is skew symmetric/Hermitian if G+T is zero
s = (gbnorm (gb_eadd (G, '+', T), 1) == 0) ;
case { 'nonskew' }
% G is symmetric/Hermitian if G-T is zero
s = (gbnormdiff (G, T, 1) == 0) ;
otherwise
error ('GrB:error', 'invalid option') ;
end
clear T
if (s)
% also check the pattern; G might have explicit zeros
S = gb_spones (G, 'logical') ;
s = gbisequal (S, gbtrans (S)) ;
end
end
|