Azzera filtri
Azzera filtri

Can I determine iteration number which matlab executes?

1 visualizzazione (ultimi 30 giorni)
for example;
while dx~=0 dx=.............
................
end
%after the iteration I want to know how many iterations later dx is reached 0.

Risposta accettata

Iain
Iain il 26 Giu 2013
count = 0;
while dx~=0
....
....
count = count + 1;
end

Più risposte (0)

Categorie

Scopri di più su Language Fundamentals in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by