• Generalized Pareto Distribution (GPD)


    广义帕雷托分布

    广义Pareto分布

    MATLAB中如何产生pareto分布

    函数   X = gprnd(X,K,sigma,theta,[M,N,...])  。当 sigma=theta 时,就可以生成通常的pareto分布。
    X = gprnd(1/2,15,15,1,10^6),即尾部参数为 alpha=2, 位置参数为 k = 15。

    function r = gprnd(k,sigma,theta,varargin)
    %GPRND Random arrays from the generalized Pareto distribution.
    %   R = GPRND(K,SIGMA,THETA) returns an array of random numbers chosen from the
    %   generalized Pareto (GP) distribution with tail index (shape) parameter K,
    %   scale parameter SIGMA, and threshold (location) parameter THETA.  The size
    %   of R is the common size of K, SIGMA, and THETA if all are arrays.  If any
    %   parameter is a scalar, the size of R is the size of the other parameters.
    %
    %   R = GPRND(K,SIGMA,THETA,M,N,...) or R = GPRND(K,SIGMA,[M,N,...]) returns
    %   an M-by-N-by-... array.
    %
    %   When K = 0 and THETA = 0, the GP is equivalent to the exponential
    %   distribution.  When K > 0 and THETA = SIGMA, the GP is equivalent to the
    %   Pareto distribution. The mean of the GP is not finite when K >= 1, and the
    %   variance is not finite when K >= 1/2.  When K >= 0, the GP has positive
    %   density for X>THETA, or, when K < 0, for 0 <= (X-THETA)/SIGMA <= -1/K.
    %
    %   See also GPCDF, GPFIT, GPINV, GPLIKE, GPPDF, GPSTAT, RANDOM.
    %   GPRND uses the inversion method.
    %   References:
    %      [1] Embrechts, P., C. Klüppelberg, and T. Mikosch (1997) Modelling
    %          Extremal Events for Insurance and Finance, Springer.
    %      [2] Kotz, S. and S. Nadarajah (2001) Extreme Value Distributions:
    %          Theory and Applications, World Scientific Publishing Company.
    %   Copyright 1993-2005 The MathWorks, Inc.
    %   $Revision: 1.1.6.1 $  $Date: 2005/05/31 16:44:41 $

  • 相关阅读:
    一本书
    在linux oracle 10g/11g x64bit环境中,goldengate随os启动而自己主动启动的脚本
    关于仿酷狗音乐播放器开源:寻求一套音乐播放器素材,让仿酷狗开源
    Cocos2d-x中Vector&lt;T&gt;容器以及实例介绍
    成都传智播客Java/PHP培训就业率高
    P1341 无序字母对
    P1168 中位数
    P1146 硬币翻转
    P1340 兽径管理
    P2023 [AHOI2009]维护序列
  • 原文地址:https://www.cnblogs.com/emanlee/p/2081295.html
Copyright © 2020-2023  润新知