incomplete gamma function calculation
Afficher commentaires plus anciens
Hi,
I have this equation:
gamma(5,x) = 2
how I can find the value of x?
Thanks
2 commentaires
José-Luis
le 24 Mai 2013
Matlab's gamma function only accepts one input argument.
Jamal Ahmad
le 24 Mai 2013
Réponse acceptée
Plus de réponses (2)
Walter Roberson
le 24 Mai 2013
0 votes
It appears to me that you will need to proceed numerically.
1 commentaire
Jamal Ahmad
le 24 Mai 2013
Matt J
le 24 Mai 2013
xv = fzero(@(z) gammainc(5,z.^2)- 2 , sqrt(xguess)).^2;
Catégories
En savoir plus sur Gamma Functions dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!