special sum of an array
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Rica
le 30 Juin 2015
Réponse apportée : Sean de Wolski
le 30 Juin 2015
hi all, is there any function to do this simply:
Array=[a1 a2 .......an]
i want to calculate this:
ArraySum=[a1 a1+a2 a1+a2+a3 .......a1+a2+a3+...an]
Thank you!
0 commentaires
Réponse acceptée
Sean de Wolski
le 30 Juin 2015
That's a cumulative sum, cumsum is the function you want:
a = [1 2 3]
cumsum(a)
ans =
1 3 6
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Characters and Strings dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!