How to create a random gamma distributed vector with a mean of 0.1 and entries between 0 and 1?
    7 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
    Anna Igbeta
 le 11 Sep 2017
  
    
    
    
    
    Commenté : Sky Sartorius
      
 le 11 Sep 2017
            I would like to create a random gamma distributed vector with a specific mean (0.1) and only values between 0 and 1. How ? Just how?
1 commentaire
  Sky Sartorius
      
 le 11 Sep 2017
				The gamma distribution is unbounded, which makes it a difficult candidate for what you're trying to do without adding steps such as clipping.
Check out the beta distribution to see if that will work for you. You can use betaincinv to help generate the vector.
Réponse acceptée
  José-Luis
      
 le 11 Sep 2017
        
      Modifié(e) : José-Luis
      
 le 11 Sep 2017
  
      The gamma distribution takes two parameters: the shape and the scale. The mean of the distribution will be shape/scale.
That means that for a given mean (pun not intended), there are infinitely many gamma distributions. You'd need to pick either the scale or the shape and then get the other one, given your mean.
Also, the gamma distribution is asymptotic, if you limit it to the 0-1 interval then what you have is a truncated distribution that might be a very bad approximation of the gamma distribution depending on your selected shape and scale parameters.
0 commentaires
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


