I am trying to extract all the values from a for loop
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I am trying to extract all the values from my for loop. the total data is 3 that satiesfies my condition inside the loop but, when i see on the workspace, it has only one variable after the loop.
Here is the code:
time=[];
for ii=2:size(time)-1
if dt(ii)>=30 && Vol(ii)>23.5 && Volt(ii)>=23
disp(times(ii));
time=n_time(ii);
end
end
time(1,:)=time;
When i see the displayed results it has 3 times, but, when i check the value inside the time vector it has only one value. Can you help me to extract all the 3 values which i getting, the one which satisfies the condition.
0 commentaires
Réponses (1)
James Tursa
le 26 Avr 2019
Modifié(e) : James Tursa
le 26 Avr 2019
You could use a counter:
k = 0: % initialize outside loop
:
k = k + 1;
time(k) = n_time(ii);
That being said, if you initilize time=[] as an empty variable, how do you expect your loop to do anything if the upper index bound uses size(time)? Maybe you meant numel(times) here instead. Or maybe a vectorized approach without a loop would be better:
time = times(dt>=30 & Vol>23.5 & Volt>=23);
Voir également
Catégories
En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!