MATLAB: Can MATLAB divide two row vectors

divisionrow-vectors

Hi. I have a simple question. I inputted [3 3 3]/[4 5 6] in MATLAB and got 0.5844 (format short).
My question is how can MATLAB divide two row vectors?

Best Answer

a=[3 3 3]
b=[4 5 6]
a./b