sum of elements of an array
3 ビュー (過去 30 日間)
古いコメントを表示
I'm sorry for the stupid question, but If i have an array A = [1,2,5,7,9] and i want an array B = [1,3,8,15,24], progressive sum of the elemts in A, what is the code that returns me B? Thanks!
0 件のコメント
回答 (1 件)
John D'Errico
2021 年 2 月 26 日
編集済み: John D'Errico
2021 年 2 月 26 日
B = cumsum(A);
You could have learned about this function by reading the help for sum. At the bottom of the help, you would see a see also line. That reads:
See also prod, cumsum, diff, accumarray, isfloat.
参考
カテゴリ
Help Center および File Exchange で Cell Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!