rgumbel.m
来自「一个非常实用的统计工具箱」· M 代码 · 共 27 行
M
27 行
function x = rgumbel(n,a,u)%PGUMBEL Random numbers from the Gumbel distribution%% x = rgumbel(n, a, u)%% Defaults are a = 1 and m = 0. The parameter a is % proportional to the inverse of the standard deviation% and the parameter u is the position.% GPL Copyright (c) Anders Holtsberg, 1999if nargin < 2 a = 1;endif nargin < 3 u = 0;endif any(any(a<=0)) error('Parameter a is wrong')endif size(n)==1 n = [n 1];endx = -log(-log(rand(n)));x = (x+u) ./ a;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?