What's the difference between gammainc & igamma? Which one should I use to compute incomplete upper gamma function? Which one is scaled??

6 views (last 30 days)
Incomplete upper gamma function

Accepted Answer

John D'Errico
John D'Errico on 25 Jun 2018
igamma lives in the stats toolbox. It gives you an upper tail integral.
gammainc lives in MATLAB proper. gammainc is scaled.
The two functions also swap meanings of the arguments. So be careful.
1 - igamma(5,2)/gamma(5)
ans =
0.0526530173437112
gammainc(2,5)
ans =
0.0526530173437111

More Answers (0)

Categories

Find more on Special Functions in Help Center and File Exchange

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!