Returns the list of available distributions
s=distfun_list("longnames") s=distfun_list("shortnames")
a matrix of strings, available distributions in long or short format
Inquires about the available distributions.
distfun_list("longnames") returns a matrix of strings containing all the available distributions, in long format, human readable. e.g. : "Uniform", "Normal", etc...
distfun_list("shortnames") returns a matrix of strings containing all the available distributions, in short format, e.g. : "unif", "norm", etc...
s=distfun_list("longnames") s=distfun_list("shortnames") // Print the map sn=distfun_list("longnames"); ln=distfun_list("shortnames"); mprintf("%-25s : ""%s""\n",[sn,ln]); | ![]() | ![]() |