Storing results from for-loop
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
LukeJes
el 3 de Sept. de 2020
Respondida: Serhii Tetora
el 3 de Sept. de 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!
0 comentarios
Respuesta aceptada
Serhii Tetora
el 3 de Sept. de 2020
idx = [];
for i = 1:length(grfcutl)
a = grfcutl{i};
idx(end+1) = find(a<=0,1,'first')
end
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Elementary Math en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!