Evaluating a complex integral
이전 댓글 표시
Hello I'm trying to integrate the following function in MATLAB
but it's returing the wrong answer when I try something like 
This is what I have tried so far:
fun = @(t,x,y) exp(1i.*(t.^4+x.*t.^2+y.*t));
P = @(x,y) integral(@(t)fun(t,x,y),-Inf,Inf);
P(1,1)
Any help appreciated and many thanks in advance
댓글 수: 3
madhan ravi
2019년 2월 14일
what’s the exact answer?
Torsten
2019년 2월 15일
exp(i*(t^4+x*t^2+y*t)) does not tend to 0 as | t| -> Inf. Thus your integral does not exist (at least in the usual sense).
Michael Devereux
2019년 2월 15일
채택된 답변
추가 답변 (1개)
Abhishek Hullur
2021년 8월 8일
0 개 추천
. Evaluate
around the rectangle with vertices 
around the rectangle with vertices 
카테고리
도움말 센터 및 File Exchange에서 Programming에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!