incomplete gamma function calculation
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi,
I have this equation:
gamma(5,x) = 2
how I can find the value of x?
Thanks
2 Commenti
Risposta accettata
Sean de Wolski
il 24 Mag 2013
Modificato: Sean de Wolski
il 24 Mag 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 Commenti
Più risposte (2)
Vedere anche
Categorie
Scopri di più su Gamma Functions in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!