matlab Integration function

Good morning everyone
I would like to integrate the following function from 0 until 0.018. Can somebody give me a suggestion about the matlab code for this task ? I have tried different options (quad option) but MATLAB gives me a error.
y=8.3151e+006*x^3-7.9844e+005*x^2+20672*x-0.586
Thanks
Sergio

 채택된 답변

Andrei Bobrov
Andrei Bobrov 2011년 11월 2일

0 개 추천

f=@(x)8.3151e+006*x.^3-7.9844e+005*x.^2+20672*x-0.586
result = quad(f,0,.018)
or
p = [8315100 -798440 20672 -0.586] % coefficients of polynom
result = diff(polyval(polyint(p),[0 .018]))

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Polynomials에 대해 자세히 알아보기

태그

질문:

2011년 11월 2일

Community Treasure Hunt

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

Start Hunting!

Translated by