Need help with computing an approximation of a singular integral.

Hey guys,
I'm fairly new at Matlab but would like to use it to compute the integral from [0,infinity): (sin(x^5)) / (x^(2)*(1+x)^(55)) dx
I was going to use the Gauss quadrature but that only works for polynomials, hence i'm not entirely sure as to what method or technique I can use in this case. Any ideas?
Thanks a lot

 채택된 답변

Use integral function.
fun = @(x) (sin(x.^5)) ./ (x.^(2).*(1+x).^55);
q = integral(fun,0,inf)

댓글 수: 1

hi I have a problem. IF the limit of this integral consist(-inf,0) the answer will be right?

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Numerical Integration and Differentiation에 대해 자세히 알아보기

질문:

2016년 9월 28일

댓글:

2017년 1월 29일

Community Treasure Hunt

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

Start Hunting!

Translated by