How to keep track of last change in a variable inside the loop?
Mostra commenti meno recenti
Suppose I have a variable NN, and I am applying for loop 40 times....each loop may or may not change the variable NN....I want to know what is the last loop where the variable NN changes....for example:if the last change of NN occurs at 35th loop and no changes thereafter then, how should I know that it last changes at 35th loop by using the code?... can anyone help
Risposta accettata
Più risposte (1)
Azzi Abdelmalek
il 25 Lug 2015
Modificato: Azzi Abdelmalek
il 25 Lug 2015
You can use a counter. Example
for k=1:40
a=sin(k)
if a>0.5
y=a
ii=k
end
end
disp(ii)
1 Commento
peyush
il 26 Lug 2015
Categorie
Scopri di più su Loops and Conditional Statements in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!