igampdf.m

来自「Continuous Profile Models (CPM) Matlab T」· M 代码 · 共 10 行

M
10
字号
function p=igampdf(x,a,b)% evaluates the pdf of a inverse gamma distribution,% using the scale factor (b)% as matlab uses it for the gamma distribution% Vasco Curdia and Daria Finocchiaro% Created on March 10, 2004p= b.^(-a) * x.^(-(a+1)) .* exp(-1./(b*x))/gamma(a);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?