필터 지우기
필터 지우기

Error integrating the sine function

조회 수: 1 (최근 30일)
Lewis HC
Lewis HC 2020년 7월 8일
댓글: Lewis HC 2020년 7월 10일
Hi friends, could you help me with this qeustion:
Write a code that numerically integrates the function y = sin (x) in the interval of x of [0 2pi] and calculates the error with respect to the exact integral for each delta x of integration [pi / 4 pi / 20 pi / 100].
I tried to began thus:
x=0:0.1:2*pi;
y1=sin(x);
dx = x(2)-x(1);
y2 = cumsum(x1.*dx);
y2 = y2-1-y2(1);
But I don't know how to do the error
Thanks for your help!

채택된 답변

madhan ravi
madhan ravi 2020년 7월 8일
ERROR = abs(y2(:) - [pi / 4 pi / 20 pi / 100])

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Debugging and Analysis에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by