Summing an array and plotting it.

2 views (last 30 days)
Yarne Schlösser
Yarne Schlösser on 12 Oct 2020
Answered: madhan ravi on 12 Oct 2020
I am trying to write an script to add values from an array. Let's say.
A = [0,1,2,3,4]
I am looking for something which does the following
Step 1: 0
Step 2: 0+1 = 1
Step 3 = 0+1+2 = 3
Step 4 = 0 +1+2+3 = 6 and this for the whole array.
How would I also plot this script?
Kind regards.

Answers (1)

madhan ravi
madhan ravi on 12 Oct 2020
doc cumsum
doc plot

Categories

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

Products

Community Treasure Hunt

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

Start Hunting!