generate a summation series
Afficher commentaires plus anciens
3(2+1)+4(3+2+1)+5(4+3+2+1)+6(5+...1)+...+1000(999+...+1).
How to write a matlab code to calculate the following summation without using for loop?
i can see the trend for 3(2+1) if the n = 1 (n+2)[((n+2)-1)+((n+2)-2)].
Assume the summation only sum until 6th term.
can we use array to solve this?
2 commentaires
ibraheem kanai
le 5 Juin 2021

Walter Roberson
le 5 Juin 2021
Modifié(e) : Walter Roberson
le 12 Juin 2021
Réponse acceptée
Plus de réponses (1)
Walter Roberson
le 13 Août 2015
0 votes
It does have a symbolic answer that you could find using nested symsum() if you have the symbolic toolbox.
But for a numeric answer: cumsum() and multiply by something gives a bunch of terms...
Catégories
En savoir plus sur Matrix Indexing dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!