mrdivide
Matrix right division (A / B).
Syntax
Section titled “Syntax”C = mrdivide(A, B)Description
Section titled “Description”Returns A / B — the solution X to X * B = A. For square non-singular B, equivalent to A * inv(B). Same as the / operator on matrices.
For elementwise division, use ./ or rdivide.
Examples
Section titled “Examples”A = [1 2; 3 4]; B = [5 6; 7 8];A / B % [3 -2; 2 -1]norm(A - (A/B) * B) % near-zero