incomplete gamma function calculation
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
José-Luis
el 24 de Mayo de 2013
Matlab's gamma function only accepts one input argument.
Jamal Ahmad
el 24 de Mayo de 2013
Respuesta aceptada
Más respuestas (2)
Walter Roberson
el 24 de Mayo de 2013
0 votos
It appears to me that you will need to proceed numerically.
1 comentario
Jamal Ahmad
el 24 de Mayo de 2013
Matt J
el 24 de Mayo de 2013
xv = fzero(@(z) gammainc(5,z.^2)- 2 , sqrt(xguess)).^2;
Categorías
Más información sobre Gamma Functions 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!