1function C = uplus (G)
2%UPLUS C = +G.
3% C = +G is the unary plus operator.  It does nothing to a GraphBLAS
4% matrix, so C is just equal to G.
5%
6% See also GrB/uminus.
7
8% SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved.
9% SPDX-License-Identifier: GPL-3.0-or-later
10
11C = G ;
12
13