1function C = transpose (G)
2%TRANSPOSE C = G.', array transpose.
3% C = G.' is the array transpose of G.
4%
5% See also GrB.trans, GrB/ctranspose.
6
7% SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved.
8% SPDX-License-Identifier: GPL-3.0-or-later
9
10G = G.opaque ;
11C = GrB (gbtrans (G)) ;
12
13