having trouble with for loops
Mostra commenti meno recenti
Having Trouble...
'Sum of N^2 with N = 1 to 1,000 using a for loop'
Risposta accettata
Più risposte (2)
Roger Stafford
il 13 Feb 2014
Here's a way to check your answer:
n = 1000;
s = n*(n+1)*(2*n+1)/6;
This gives you the same value as
s = sum((1:n).^2);
Alonso Mukendi Kalonji
il 29 Ott 2022
0 voti
a = 1;
n= 1000;
for i = 1: n
a = a+i^2
end
disp(a)
Categorie
Scopri di più su Loops and Conditional Statements in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!