Info

This question is closed. Reopen it to edit or answer.

Values in the loop are overwritten

1 view (last 30 days)
swati mane
swati mane on 2 Aug 2019
Closed: MATLAB Answer Bot on 20 Aug 2021
Hello sir ..my code is:
for i=1:1:4; S=M(1:1,i)./20; valueOfB(j)=S; end
I should get 4 different values of S. But same value i am getting four times. Where M is taken for frames 1 to 25...26 to 50 ...51 to 75 and so on.and for M i am getting correct values. And j = 1:25:100.
Thanks in advance.
  4 Comments
KALYAN ACHARJYA
KALYAN ACHARJYA on 3 Aug 2019
Edited: KALYAN ACHARJYA on 3 Aug 2019
It's OK, minor modification
valueOfB=zeros(1,4);
for i=1:1:4
valueOfB(i)=M(1,i)/20;
end
Or
valueOfB=M(1,1:4)./20; % Without loop
swati mane
swati mane on 5 Aug 2019
Yes its working.thanks a lot @ kalyan acharjya

Answers (0)

Community Treasure Hunt

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

Start Hunting!