Stop a sum of numbers until a certain value is reached

3 次查看(过去 30 天)
If I have defined values
Nmax = 15;
A = [2 5 4 6 1];
I want to make a sum of each value of A in the order in which it is found until it reaches Nmax, if the value is equal to or greater than Nmax the sum stops and the number or numbers that have been pending to be added are saved in another vector B.
How did you get the sum to stop and tell me the index of the vector at which it stopped to be able to save the values forward in the other vector?
Thank you in advance for your help

采纳的回答

Image Analyst
Image Analyst 2019-10-21
You can use cumsum() to do it vectorized, like most MATLABers would:
Nmax = 15;
A = [2 5 4 6 1];
ca = cumsum(A) % Sum them all up
lastIndex = find(ca <= Nmax, 1, 'last') % Last index before the sum would exceed Nmax.
% Show what elements they were "Pending" (whatever that means in this context).
B = A(lastIndex + 1 : end) % The remaining numbers
  1 个评论
Pilar Jiménez
Pilar Jiménez 2019-10-22
Thank you for your help. It really helps me a lot for what I have to do, I've been trying for a long time, I didn't know that the "cumsum" command existed.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Language Support 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by