Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

Values in the loop are overwritten

1 vue (au cours des 30 derniers jours)
swati mane
swati mane le 2 Août 2019
Clôturé : MATLAB Answer Bot le 20 Août 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 commentaires
KALYAN ACHARJYA
KALYAN ACHARJYA le 3 Août 2019
Modifié(e) : KALYAN ACHARJYA le 3 Août 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 le 5 Août 2019
Yes its working.thanks a lot @ kalyan acharjya

Réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by