MATLAB: Division of two vectors – mrdivide

/mrdivide

Can you please tell me how works the operator "/" in this example? I don't know how I obtained this result… Thanks !
Example:
>> A=[1 2 3];
>> B=[2 3 4];
>> C=A/B
C =
0.6897

Best Answer

Related Question