Filter löschen
Filter löschen

Error integrating the sine function

3 Ansichten (letzte 30 Tage)
Lewis HC
Lewis HC am 8 Jul. 2020
Kommentiert: Lewis HC am 10 Jul. 2020
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!

Akzeptierte Antwort

madhan ravi
madhan ravi am 8 Jul. 2020
ERROR = abs(y2(:) - [pi / 4 pi / 20 pi / 100])

Weitere Antworten (0)

Kategorien

Mehr zu Debugging and Analysis finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by