Effacer les filtres
Effacer les filtres

HOW TO WRITE SUMMATION FORM ∑_(i=1) (L-1)

2 vues (au cours des 30 derniers jours)
sheeba
sheeba le 4 Sep 2013
LOWER LIMIT IS i=0, upper limit is L-1(L=256)

Réponses (2)

Laurent
Laurent le 4 Sep 2013
Make an appropriate vector with the values that you want to sum (or select the values from an array containing them) and use the command 'sum'.

Matt J
Matt J le 4 Sep 2013
Modifié(e) : Matt J le 4 Sep 2013
Are you trying to sum the first 256 elements of an array? If so, you would do as follows
sum(x(1:256))
Or, if length(x) is 256, then you would just do
sum(x)

Catégories

En savoir plus sur Mathematics dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by