How to formulate the summation of sequence number
    4 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
I have a sequence data between X and Y.  In general Y is X summation
  X      Y 
   6.84  6.84 
 12.04  18.88 
   9.47  28.35 
   8.53  36.88 
   6.91  43.79 
   2.93  46.72 
   0.82  47.54 
   0.54  48.08 
       0  48.08 
       0  48.08 
Y1=X1
Y2=X1+X2
Y2=X1+X2+X3
how to develop the function.
Thanks
3 Commenti
Risposta accettata
  Tommy
      
 il 28 Mar 2020
        Try
Y = cumsum(X)
3 Commenti
  Walter Roberson
      
      
 il 28 Mar 2020
				

If agreement to within roundoff error is not good enough, then what do you require?
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Matrix Indexing in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


