Gamma probability distribution
[f]=gamm_pdf(x,a)
* x = variable matrix (nxm)
* a = a scalar or a (mxn) variable matrix
* f = a vector of pdf at each element of x of the gamma(a) or of the gamma(corresponding element in a) distribution
f=gamm_pdf([1:4],2) // Calculates the gamma(2) probability distribution function at values 1, 2, 3 and 4 and store them in a (1x4) vector. f=gamm_pdf([1:4],2*ones(1,4)) // Does exactly the same thing. | ![]() | ![]() |