Displaying output from a summation.
조회 수: 1 (최근 30일)
이전 댓글 표시
I'm trying to find partial sums of s=1/k^2 where k= multiples of 400. I'm using a "for" statement and want to have the script output the values at those multiples. At this point, I can only get it to output the final value. I want it to output the sums for k=400, 800, 1200, ... Also, I would like the output for the error for the actual sum.
Code is below.
format long
s=0;
for n=1:13
k=400;
end
for i=1:n*k
s=s+1/i^2;
y=abs(s-(pi^2/6));
end
disp([' Error', ' s_n'])
disp([y,s])
Thanks.
댓글 수: 0
채택된 답변
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!