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!