Evaluating a complex integral
Ältere Kommentare anzeigen
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 Kommentare
madhan ravi
am 14 Feb. 2019
what’s the exact answer?
Torsten
am 15 Feb. 2019
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
am 15 Feb. 2019
Akzeptierte Antwort
Weitere Antworten (1)
Abhishek Hullur
am 8 Aug. 2021
0 Stimmen
. Evaluate
around the rectangle with vertices 
around the rectangle with vertices 
Kategorien
Mehr zu Programming finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!