Error in quad function-maximum function count exceeded

Hi all, i need help using the quad function.
function y = myfun(x) y = exp(b*z)*exp((6*a.^2-i*k*w.^2*z)/(z.^2+a.^2))./(a+i*z);
>> F = @(z) exp(b*z)*exp((6*a.^2-i*k*w.^2*z)/(z.^2+a.^2))./(a+i*z); Q = quad(F,0,2); Warning: Maximum function count exceeded; singularity likely. > In quad at 106
Anyone know what the warning means?? Thank you..

 Respuesta aceptada

try use quadgk
for example:
b=1;a=1;k=1;w=1;
F = @(z) exp(b*z).*exp((6*a^2-1i*k*w^2*z)./(z.^2+a^2))./(a+1i*z)
quadgk(F,0,2)
quad(F,0,2)

2 comentarios

Elsa Sw
Elsa Sw el 27 de Dic. de 2011
It works.Thanks alot Andrei
Elsa Sw
Elsa Sw el 27 de Dic. de 2011
It works.Thanks alot Andrei

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Data Types en Centro de ayuda y File Exchange.

Preguntada:

el 23 de Dic. de 2011

Community Treasure Hunt

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

Start Hunting!

Translated by