Info

此问题已关闭。 请重新打开它进行编辑或回答。

Values in the loop are overwritten

1 次查看(过去 30 天)
swati mane
swati mane 2019-8-2
关闭: MATLAB Answer Bot 2021-8-20
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 个评论
KALYAN ACHARJYA
KALYAN ACHARJYA 2019-8-3
编辑:KALYAN ACHARJYA 2019-8-3
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 2019-8-5
Yes its working.thanks a lot @ kalyan acharjya

回答(0 个)

此问题已关闭。

Community Treasure Hunt

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

Start Hunting!

Translated by