1function C = kron (A, B)
2%KRON sparse Kronecker product.
3% C = kron (A,B) is the sparse Kronecker tensor product of A and B.
4%
5% See also GrB.kronecker.
6
7% SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved.
8% SPDX-License-Identifier: GPL-3.0-or-later
9
10if (isobject (A))
11    A = A.opaque ;
12end
13
14if (isobject (B))
15    B = B.opaque ;
16end
17
18C = GrB (gbkronecker (A, '*', B)) ;
19
20