MATLAB: How to specify the kurtosis when generating a PDF

fittinggevparametershapeStatistics and Machine Learning Toolbox

I am creating a probability density function of the Generalized Extreme Value Distribution in MATLAB using the GEVPDF function. I would like to make sure that this function also takes in kurtosis, along with mean and variance, when generating the PDF.

Best Answer

Kurtosis is derived from only one independent variable -- the shape parameter 'K' (The shape parameter 'K' is defined as the lowercase greek symbol Xi in some textbooks).
Therefore, specifying the 'K' variable in GEVPDF in turn ensures that the kurtosis is specified in the generated GEV probability density function.
Related Question