how to calculate Somme of vector elements ?
64 views (last 30 days)
Show older comments
i would like to calculate the somme k=1:10^5 of 1/k^2,using the command sum, can anyone help me ?
0 Comments
Accepted Answer
madhan ravi
on 21 Oct 2018
Edited: madhan ravi
on 21 Oct 2018
k=1:10.^5;
sum(1./(k.^2))
6 Comments
Bruno Luong
on 28 Oct 2018
"is there any method to verify the obtained result ?"
s = sum(1./(k.^2))
s / (pi^2/6)
That gives
s =
1.6449
ans =
1.0000
Seems alright to me.
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!