MATLAB: How to divide a column vector by a scalar

right array divide

I have a column vector (54×1) and i need to divide all of them by the same scalar. I have tried the right array divider ./ but its not working for me. Any help appreciated

Best Answer

A = rand(54,1) ;
scalar = rand ;
iwant = A/scalar ;