Find an estimator (paramhat) of the generalized extreme value (GEV) distribution fitting data using the method of L-moments.
data = gevrnd (0.1, 1, 0, 100, 1); [pfit, pci] = gevfit_lmom (data); p1 = gevcdf (data,pfit(1),pfit(2),pfit(3)); [f, x] = ecdf (data); plot(data, p1, 's', x, f)
See also: gevfit.
Package: statistics