<< distfun_inthisto Support distfun_name2func >>

Distfun >> Distfun > Support > distfun_list

distfun_list

Returns the list of available distributions

Calling Sequence

s=distfun_list("longnames")
s=distfun_list("shortnames")

Parameters

s :

a matrix of strings, available distributions in long or short format

Description

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...

Examples

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]);

Authors


Report an issue
<< distfun_inthisto Support distfun_name2func >>