Closed-skew Gaussian generator

Genereates random number from the closed-skew Gaussian distribution.
514 téléchargements
Mise à jour 27 juin 2011

Afficher la licence

Genereates random number from the closed-skew Gaussian distribution with two different methods:

CSN_mcmc.m
Does mcmc, so each realisation are not completely independent
% Usage: [res, t_wi, t_inv] =CSN_mcmc(Mu,Sigma,Gamma,Nu,Delta,num,burn)
%
% Mu,Sigma,Gamma,Nu,Delta: parameters in CSN
% num: number of realisations
% burn: burnin time, the first 'burn' realisations are not returned
% res: returned realisations

CSN_BM.m
Completely independent realisations, but takes much longer time.
% Usage: [res, t_wi, t_inv] =CSN_BM(Mu,Sigma,Gamma,Nu,Delta,num)
%
% Mu,Sigma,Gamma,Nu,Delta: parameters in CSN
% num: number of realisations
% res: returned realisations

More info about the algorithms can be found here: www.dahoiv.net/master

Citation pour cette source

Daniel Høyer Iversen (2024). Closed-skew Gaussian generator (https://www.mathworks.com/matlabcentral/fileexchange/31969-closed-skew-gaussian-generator), MATLAB Central File Exchange. Récupéré le .

Compatibilité avec les versions de MATLAB
Créé avec R2010b
Compatible avec toutes les versions
Plateformes compatibles
Windows macOS Linux
Catégories
En savoir plus sur Random Number Generation dans Help Center et MATLAB Answers

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Version Publié le Notes de version
1.5.0.0

screenshot

1.3.0.0

spelling

1.1.0.0

Added more info

1.0.0.0