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 58 59 60 61 62 63 64 65 66 67 68 69
|
function C = vreduce (arg1, arg2, arg3, arg4, arg5, arg6)
%GRB.VREDUCE reduce a matrix to a vector.
%
% C = GrB.vreduce (monoid, A)
% C = GrB.vreduce (monoid, A, desc)
% C = GrB.vreduce (Cin, M, monoid, A)
% C = GrB.vreduce (Cin, M, monoid, A, desc)
% C = GrB.vreduce (Cin, accum, monoid, A)
% C = GrB.vreduce (Cin, accum, monoid, A, desc)
% C = GrB.vreduce (Cin, M, accum, monoid, A)
% C = GrB.vreduce (Cin, M, accum, monoid, A, desc)
%
% The monoid and A arguments are required. All others are optional.
%
% Monoids for real non-logical types: '+', '*', 'max', 'min', 'any'
% For logical: '|', '&', 'xor', 'eq', 'any'
% For complex types: '+', '*', 'any'
% For integer types: 'bitor', 'bitand', 'bitxor', 'bitxnor'
%
% See 'help GrB.monoidinfo' for more details on the available monoids.
%
% By default, each row of A is reduced to a scalar. If Cin is not present,
% C (i) = reduce (A (i,:)). In this case, Cin and C are column vectors of
% size m-by-1, where A is m-by-n. If desc.in0 is 'transpose', then A.' is
% reduced to a column vector; C (j) = reduce (A (:,j)). In this case, Cin
% and C are column vectors of size n-by-1, if A is m-by-n.
%
% See also GrB.reduce, GrB/sum, GrB/prod, GrB/max, GrB/min.
% SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved.
% SPDX-License-Identifier: Apache-2.0
if (isobject (arg1))
arg1 = arg1.opaque ;
end
if (isobject (arg2))
arg2 = arg2.opaque ;
end
if (nargin > 2 && isobject (arg3))
arg3 = arg3.opaque ;
end
if (nargin > 3 && isobject (arg4))
arg4 = arg4.opaque ;
end
if (nargin > 4 && isobject (arg5))
arg5 = arg5.opaque ;
end
switch (nargin)
case 2
[C, k] = gbvreduce (arg1, arg2) ;
case 3
[C, k] = gbvreduce (arg1, arg2, arg3) ;
case 4
[C, k] = gbvreduce (arg1, arg2, arg3, arg4) ;
case 5
[C, k] = gbvreduce (arg1, arg2, arg3, arg4, arg5) ;
case 6
[C, k] = gbvreduce (arg1, arg2, arg3, arg4, arg5, arg6) ;
end
if (k == 0)
C = GrB (C) ;
end
|