Clear Filters
Clear Filters

Cannot compute the following expression using "Symsum"

2 views (last 30 days)
B is a Vector which is 1 x 29 ......
I need a row vector which is [B(1), B(1)+B(2) , B(1)+B(2)+B(3) , ........ ]
I am using Symsum /// But i am getting error....

Accepted Answer

Zoltán Csáti
Zoltán Csáti on 25 Oct 2014
Since B is a vector not a function, you can use cumsum. That is
a = cumsum(B);

More Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!