フィルターのクリア

Stop a sum of numbers until a certain value is reached

3 ビュー (過去 30 日間)
Pilar Jiménez
Pilar Jiménez 2019 年 10 月 21 日
コメント済み: Pilar Jiménez 2019 年 10 月 22 日
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 Center および File ExchangeLanguage Support についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by