Effacer les filtres
Effacer les filtres

How to set Reallyl Basic iterative sum

2 vues (au cours des 30 derniers jours)
Niklas Kurz
Niklas Kurz le 15 Jan 2021
Modifié(e) : KSSV le 15 Jan 2021
I want to sum up all n*sin(n*x)-terms. I've found that
f = n*sin(n*x)
for n = 1:10
f(n+1) = n*sin(n*x);
end
sum(f)
works. However, in my view it's not that elegant. In other words, how to implement without using 'sum'?

Réponse acceptée

KSSV
KSSV le 15 Jan 2021
Modifié(e) : KSSV le 15 Jan 2021
% f = n*sin(n*x) ;
thesum = 0 ;
for n = 1:10
thesum = thesum+n*sin(n*x);
end

Plus de réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by