Borrar filtros
Borrar filtros

Displaying all values from a for loop in one vector

1 visualización (últimos 30 días)
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

Respuesta aceptada

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

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Get Started with MATLAB en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by