ldivide
Element-wise left division (function form of .\).
Syntax
Section titled “Syntax”C = ldivide(A, B)Description
Section titled “Description”Returns B ./ A applied elementwise (note the operand reversal — left division). Each element of B is divided by the corresponding element of A.
Example
Section titled “Example”ldivide(2, 10) % 5 (= 10/2)