필터 지우기
필터 지우기

Calculate the result and absolute error for each partial sum: N = 10, 160, and 640. You should use for-loops and not commands like symsum. (b) Find the smallest value of N for which the absolute error is smaller than 10−4 (1e − 4). You should use a w

조회 수: 1 (최근 30일)
My question is:
Calculate the result and absolute error for each partial sum: N = 10, 160, and 640. You should use for-loops and not commands like symsum.
was wondering if my code was missing something:
%(a) Calculate the result and absolute error for each partial sum: N = 10, 160, and 640.
sum=0;
for N=[10 160 640]
for n=1:1:N
y=1/n^2
end
sum=sum+1
error=((pi^2)/6)-sum
end
disp(sum)
  댓글 수: 1
KALYAN ACHARJYA
KALYAN ACHARJYA 2020년 1월 12일
Find the smallest value of N for which the absolute error is smaller than 10−4 (1e − 4). You should use a w
while loop

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by