sum of elements of an array

3 vues (au cours des 30 derniers jours)
RAFFAELE CANTERI
RAFFAELE CANTERI le 26 Fév 2021
Commenté : RAFFAELE CANTERI le 26 Fév 2021
I'm sorry for the stupid question, but If i have an array A = [1,2,5,7,9] and i want an array B = [1,3,8,15,24], progressive sum of the elemts in A, what is the code that returns me B? Thanks!

Réponses (1)

John D'Errico
John D'Errico le 26 Fév 2021
Modifié(e) : John D'Errico le 26 Fév 2021
B = cumsum(A);
You could have learned about this function by reading the help for sum. At the bottom of the help, you would see a see also line. That reads:
See also prod, cumsum, diff, accumarray, isfloat.
  1 commentaire
RAFFAELE CANTERI
RAFFAELE CANTERI le 26 Fév 2021
Easy! Thanks

Connectez-vous pour commenter.

Catégories

En savoir plus sur Matrices and Arrays 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!

Translated by