Effacer les filtres
Effacer les filtres

Generating random number for the Inverse Gaussian distribution

9 vues (au cours des 30 derniers jours)
Abas Arkawazi
Abas Arkawazi le 22 Nov 2019
Commenté : Abas Arkawazi le 23 Nov 2019
what is the code for generating random number for the inverse Gaussian distribution?
Please post here if anyone known of a good method of doing this.

Réponse acceptée

the cyclist
the cyclist le 22 Nov 2019
Modifié(e) : the cyclist le 22 Nov 2019
If you have the Statistics and Machine Learning Toolbox, then you can generate N random numbers with
N = 1000; % Set this to the number of values you want
mu = 1; % Set the scale parameter
lambda = 1; % Set the shape parameter
r = random('InverseGaussian',mu,lambda,N,1);

Plus de réponses (0)

Catégories

En savoir plus sur Random Number Generation dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by