incomplete gamma function calculation
이전 댓글 표시
Hi,
I have this equation:
gamma(5,x) = 2
how I can find the value of x?
Thanks
댓글 수: 2
José-Luis
2013년 5월 24일
Matlab's gamma function only accepts one input argument.
Jamal Ahmad
2013년 5월 24일
채택된 답변
추가 답변 (2개)
Matt J
2013년 5월 24일
xv = fzero(@(z) gammainc(5,z.^2)- 2 , sqrt(xguess)).^2;
카테고리
도움말 센터 및 File Exchange에서 Gamma Functions에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!