Azzera filtri
Azzera filtri

Displaying all values from a for loop in one vector

1 visualizzazione (ultimi 30 giorni)
Hi everyone. I know people have asked similar questions to this one, but I am a complete novice with MATLAB and have been unable to generalise the answers to my own problem.
I'd like all the answers generated in this loop to be displayed as one vector so that I can export them to Excel for an analysis. This is the loop:
for t=600:600:28800
length(find(sumA<t))
end
It's a very simple loop, but I am stuck! sumA is a vector of values from another loop.
Thanks for any assistance!
Rebecca

Risposta accettata

Walter Roberson
Walter Roberson il 22 Gen 2013
sum(bsxfun(@lt, sumA(:), 600:600:28800))
Or, more generally,
tvals = 600:600:28800;
numT = length(tvals);
L = zeros(numT, 1);
for K = 1 : numT
t = tvals(K);
L(K) = length(find(sumA<t));
end
Then you could write L
  1 Commento
Rebecca
Rebecca il 22 Gen 2013
Wow, what a quick response. It worked a charm and I see what you did. Thanks so much!

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Get Started with MATLAB in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by