Filter löschen
Filter löschen

for del=-1:0.5:1, i want to get the index of the value of del being used for that specific iteration . can anyone please tell me a way to do this

2 Ansichten (letzte 30 Tage)
I am running a for loop "for del=-1:0.5:1" and i want to get the index of the value of del being used for the iteration lets say that its the 2nd iteration so i want to get the index of 2nd value of del

Akzeptierte Antwort

sixwwwwww
sixwwwwww am 19 Okt. 2013
Dear Qasim, the index in the 2nd value of del will be 2. You can do like this:
count = 1;
for del = -1:0.5:1
fprintf('Iteration # = %d\n', count);
count = count + 1;
end
Or if you need something else then please state your question again clearly
  1 Kommentar
Qasim Manzoor
Qasim Manzoor am 19 Okt. 2013
oh man stupid me. it was so simple and obvious. i was going through the programmers equivalent of writer's block. thanks alot. the count thing will accomplish what i needed.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by