How to integrate this function correctly?

조회 수: 1 (최근 30일)
Danny Helwegen
Danny Helwegen 2019년 9월 24일
답변: Fabio Freschi 2019년 9월 24일
Hey,
this seems like a rather simpel problem but I don't seem to get it right.
I'm given the following integral: = and the following dataset:
time = [0 1 2 3 4 5 6 7 8 9 10 12 14]';
E = [0 0.0199867 0.0999334 0.1598934 0.1998668 0.1598934 0.1199201 0.0799467 0.05996 0.0439707 0.02998 0.011992 0]';
Next I used trapz to solve with a result of = 32.2409. However, I know that the correct answer should be ~6.1. What am I doing wrong?
y_sigma = time.^2 .* E;
sigma = trapz(time,y_sigma)
Thanks in advance,
Danny

채택된 답변

Fabio Freschi
Fabio Freschi 2019년 9월 24일
I don't see nothing wrong in the result you get. The result is correct also "'by looking" at time-y_sigma graph. My guesses:
  • Are your data correct?
  • you got sigma^2, but maybe you should write
sigma = sqrt(trapz(time,y_sigma)) % 5.7130

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Numerical Integration and Differentiation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by