Effacer les filtres
Effacer les filtres

What's the difference between code?

1 vue (au cours des 30 derniers jours)
Francesco
Francesco le 22 Fév 2014
Commenté : Jan le 22 Fév 2014
It's a stupid question but these two line of code do the same thing wthere dt1 is a constant. Is it right?
prova= sum((out1.Y{i}(:,3:end)).^2)*dt1;
h=1;
for i=3:end;
y1=out.Y(:,i);
prova(h)=sum(y1.^2)*dt1;
h=h+1;
end;
  1 commentaire
Jan
Jan le 22 Fév 2014
Replace for i=3:end by for i = 3:size(out.Y, 2) .

Connectez-vous pour commenter.

Réponse acceptée

Walter Roberson
Walter Roberson le 22 Fév 2014
Yes, they appear to be, at least to the limits of round-off error.
  1 commentaire
Francesco
Francesco le 22 Fév 2014
Ok ok. I just wanted a confirmation.

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by