incomplete gamma function calculation
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi,
I have this equation:
gamma(5,x) = 2
how I can find the value of x?
Thanks
2 comentarios
Respuesta aceptada
Sean de Wolski
el 24 de Mayo de 2013
Editada: Sean de Wolski
el 24 de Mayo de 2013
I don't believe that's possible:
gammainc(5,0)
gammainc(5,1000);
it never goes near two.
More
options = optimoptions(@fminunc,'tolfun',10^-10,'tolx',10^-12);
xv = fminunc(@(x)(gammainc(5,x)-(10^-4)).^2,4,options)
%xv =15.6926
gammainc(5,xv)
% ans =
% 1.0004e-04
7 comentarios
Más respuestas (2)
Ver también
Categorías
Más información sobre Gamma Functions en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!