Evaluating a complex integral
Mostrar comentarios más antiguos
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 comentarios
madhan ravi
el 14 de Feb. de 2019
what’s the exact answer?
Torsten
el 15 de Feb. de 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
el 15 de Feb. de 2019
Respuesta aceptada
Más respuestas (1)
Abhishek Hullur
el 8 de Ag. de 2021
0 votos
. Evaluate
around the rectangle with vertices 
around the rectangle with vertices 
Categorías
Más información sobre Programming en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!