Displaying all values from a for loop in one vector

1 view (last 30 days)
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

Accepted Answer

Walter Roberson
Walter Roberson on 22 Jan 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 Comment
Rebecca
Rebecca on 22 Jan 2013
Wow, what a quick response. It worked a charm and I see what you did. Thanks so much!

Sign in to comment.

More Answers (0)

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!