incomplete gamma function calculation
Ältere Kommentare anzeigen
Hi,
I have this equation:
gamma(5,x) = 2
how I can find the value of x?
Thanks
2 Kommentare
José-Luis
am 24 Mai 2013
Matlab's gamma function only accepts one input argument.
Jamal Ahmad
am 24 Mai 2013
Akzeptierte Antwort
Weitere Antworten (2)
Walter Roberson
am 24 Mai 2013
0 Stimmen
It appears to me that you will need to proceed numerically.
1 Kommentar
Jamal Ahmad
am 24 Mai 2013
Matt J
am 24 Mai 2013
xv = fzero(@(z) gammainc(5,z.^2)- 2 , sqrt(xguess)).^2;
Kategorien
Mehr zu Gamma Functions finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!