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 On Mon, Nov 13, 2017 at 4:51 AM, Janardhan Pulivarthi < [email protected]> wrote: > 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 >
