incomplete gamma function calculation
조회 수: 2 (최근 30일)
이전 댓글 표시
Hi,
I have this equation:
gamma(5,x) = 2
how I can find the value of x?
Thanks
댓글 수: 2
채택된 답변
Sean de Wolski
2013년 5월 24일
편집: Sean de Wolski
2013년 5월 24일
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
추가 답변 (2개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Gamma Functions에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!