Clear Filters
Clear Filters

incremental sum in array

3 views (last 30 days)
ANAND ASP
ANAND ASP on 9 Feb 2021
Answered: Jan on 9 Feb 2021
A=[45 48 63 84 32]
B=[272 227 179 116 32]
A is matrix which has some randm numbers, Matrix B is answer
Logic is, we have to start sum from last element that is 32
last second element in answer (B) is 32+84 = 116
last third element in answer (B) is 32+84+63 = 179
last fourth element in answer (B) is 32+84+63+48 = 227
last fifth element in answer (B) is 32+84+63+48+45 = 272 and so on...

Accepted Answer

Jan
Jan on 9 Feb 2021
A = [45 48 63 84 32]
cumsum(A, 'reverse')

More Answers (0)

Categories

Find more on Resizing and Reshaping Matrices 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!