资源简介
学习复杂网络时,设计到幂律分布问题,计算幂律分布的有效代码,可运行
代码片段和文件信息
function x = randp(NMalphab)
% randp generates Pareto random variables.
%
% created: Fri Aug 8 1997 (c) Matthew Roughan
% author: Matthew Roughan
% email: matthew.roughan@adelaide.edu.au
%
% This function generates Pareto random variables (of type I)
% see “Statistical Distributions“ Evans Hastings and Peacock Wiley 1993
% or http://www.maths.adelaide.edu.au/matthew.roughan/probability_distrns/node6.html
% or http://en.wikipedia.org/wiki/Pareto_distribution
%
% The Pareto distribution is a classic “heavy-tailed“ or “power-law“ distribution.
% It has distribution function
% F(x) = 1 - (b/x)^alpha for x>=b
% and density
% f(x) = (alpha/b) * (b/x)^(alpha+1) for x>=b
%
% Its mean is
% E[X] = b * alpha/(alpha-1) for alpha>1
% but note that the mean is infinite for alpha<=1
%
% Its variance is
% Var(X) = b^2 * alpha/[(alpha-1)^2*(alpha-2)] for alpha>1
% but note that the variance is infinite for alpha<=2
%
% Median
% Med(X) = b * 2^(1/alpha)
%
% INPUTS:
% (NM) size of output matrix of random variables
% alpha>0 shape parameter of Pareto distribution
% b>0 location (sometimes called scale) parameter of Pareto distribution
%
% OUTPUTS
% x an (NM) array of random Pareto distributed numbers
% range of x = [b inf)
%
% Note the function calls “rand“ so if you want to control the seed use rand(‘state‘ seed).
%
% Note that the type II Pareto is just shifted so that x>=0 so to obtain this distribution
% just take
% x = randp(NMalphab) - b;
%
if (alpha <= 0)
error(‘alpha must be > 0‘)
end
if (b <= 0)
error(‘b must be > 0‘)
end
if (N<1 | ceil(N) ~= N)
error(‘N must be a positive integer‘)
end
if (M<1 | ceil(M) ~= M)
error(‘M must be a positive integer‘)
end
y = rand(NM);
x = b*(1-y).^(-1/alpha);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1336 2009-08-02 21:56 power-law幂律分布\license.txt
文件 1838 2009-08-02 21:21 power-law幂律分布\randp.m
文件 977 2009-08-02 21:48 power-law幂律分布\randp_test.m
文件 8042 2009-08-02 21:48 power-law幂律分布\randp_test.png
文件 10398 2014-05-01 20:51 power-law幂律分布\randp_test.tiff
目录 0 2014-05-01 20:53 power-law幂律分布
----------- --------- ---------- ----- ----
22591 6
- 上一篇:移动IMS设备规范
- 下一篇:《隧道及地下工程ANSYS分析》-李围
相关资源
- Guanrong Chen《Introduction to Complex Networ
- 复杂系统与复杂网络.pdf
- Graph Theory and Complex Networks: An Introduc
- pajek软件 复杂网络可视化分析工具
- 复杂网络演化博弈理论研究综述
- 复杂网络建模
- NodeXL安装包
- 基于复杂网络的城市交通拥堵传播
- science复杂系统与网络专辑
- ucinet6中文版
- gephi作图帮助文档
- 复杂网络基本工具箱
- 复杂网络理论及其应用.pdf
- 复杂网络及其应用
- ucinet(计算复杂网络参数)
- 图计算、复杂网络、TigerGraph产品用例
- 复杂系统与复杂网络-何大韧
- 复杂网络大家名著:Complex Networks---
- 复杂网络导论
- 网络科学导论 汪小帆
- 常见复杂网络网络模型的实现代码
- 边介数源代码(复杂网络或者软件网
- Infomap算法 复杂网络
- 复杂网络数据从excel转pajek软件
- 复杂网络 基本参数计算,度分布
- 聚类技术---复杂网络社团检测
- 分层复杂网络的鲁棒性研究
- 陕西煤炭物流产业的现状分析与发展
- sir和无标度网络.rar
- 演化博弈 复杂网络
评论
共有 条评论