Matrix operation without for loop

1 view (last 30 days)
Sudipta Ray
Sudipta Ray on 1 Jul 2015
Commented: Sudipta Ray on 1 Jul 2015
I have a (n,m) matrix T and a (n,1) vector a. I want to divide all the elements of n-th row with the n-th element of the column. Since I want to vectorize the process, I have tried the following
i = (1:n)';
out(i,:) = T(i,:)./a(i);
could it work or am I missing something? The indexing here do work when no component-wise operation is performed.

Accepted Answer

dpb
dpb on 1 Jul 2015
>> T=ones(3);
>> a=1:3;a=a(:);
>> out=bsxfun(@rdivide,T,a)
out =
1.0000 1.0000 1.0000
0.5000 0.5000 0.5000
0.3333 0.3333 0.3333
>>

More Answers (0)

Categories

Find more on Programming in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!