1function C = mldivide (A, B) 2% C = A\B, matrix left division. 3% If A is a scalar, then C = A.\B is computed; see 'help ldivide'. 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/mrdivide. 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 (A)) 13 C = rdivide (B, A) ; 14else 15 C = GrB (builtin ('mldivide', double (A), double (B))) ; 16end 17 18