how to calculate Somme of vector elements ?
    66 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
				
      Edited: 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 (1)
  mohamed
 on 28 Mar 2024
        
I need instructions that I write in MATLAB, to give me the result of this sum
2 Comments
  mohamed
 on 29 Mar 2024
				Thanks dude, just forgot to mention that "x" changes from 0 to 2, and t is the time 
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



