Azzera filtri
Azzera filtri

Storing results from for-loop

1 visualizzazione (ultimi 30 giorni)
LukeJes
LukeJes il 3 Set 2020
Risposto: Serhii Tetora il 3 Set 2020
Just wondering how I should go about storing all of the values that I get out of this loop in 'idx' without overriding the previous itteration.
idx = []
for i = length (grfcutl)
a = grfcutl{i}
b = find(a<=0)
idx = b(1)
end
Thanks!

Risposta accettata

Serhii Tetora
Serhii Tetora il 3 Set 2020
idx = [];
for i = 1:length(grfcutl)
a = grfcutl{i};
idx(end+1) = find(a<=0,1,'first')
end

Più risposte (0)

Categorie

Scopri di più su Startup and Shutdown 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