MATLAB: Vectorization dividing row by their maximum.

row operations.vectorization

*Dear All,
Let say I have M = magic(10); Now I want to divide each element of the matrix by the maximum element row wise.
For example, I can get max in rows by
m = max(M, [],2);
Now this is column matrix having same number of rows as M. Now I want to divide each row of M by the row value of m .*

Best Answer

This looks like it works:
M = magic(10);
m = max(M, [],2);
Result = bsxfun(@rdivide, M, m);