1function C = mrdivide (A, B)
2% C = A/B, matrix right division.
3% If A is a scalar, then C = A./B is computed; see 'help rdivide'.
4% Otherwise, C is computed by first converting A and B to MATLAB sparse
5% matrices, and then C=A/B is computed using the MATLAB backslash.
6%
7% See also GrB/mldivide.
8
9% SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved.
10% SPDX-License-Identifier: GPL-3.0-or-later
11
12if (isscalar (B))
13    C = rdivide (A, B) ;
14else
15    C = GrB (builtin ('mrdivide', double (A), double (B))) ;
16end
17
18