Re: Distribution functions such as gamma, weibull etc.

2017-11-13 Thread Matthias Boehm
unfortunately, our cdf and invcdf currently only support the distributions normal, exp, chisq, f, and t and scalar inputs. So you would have to emulate this at script level. Extending the list of distribution functions and adding matrix support would be a good addition though. Regards, Matthias O

Distribution functions such as gamma, weibull etc.

2017-11-13 Thread Janardhan Pulivarthi
Hi, I am wondering, whether we have builtin functions for distributions such as weibull, laplace, gamma. (looking at some top level algorithms, says that we do have!). Would like to use in the following case: ``` lp = -gamma(k) - k*log(t) + (k-1)*lx - x/t; ``` Thanks, Janardhan