Question about "gamcdf" code
    3 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
    Chris
 le 11 Oct 2022
  
    
    
    
    
    Réponse apportée : Jeff Miller
      
 le 12 Oct 2022
            The scale parameter is 2 and shape parameter is 1. I want to use "gamcdf" code for 75th percentile value, then do I have to use gamcdf(75,2,1) or gamcdf(0.75,2,1) ?
0 commentaires
Réponse acceptée
  Jeff Miller
      
 le 12 Oct 2022
        To get the 75th percentile value, you need to use gaminv() rather than gamcdf.  Also, the shape parameter comes first and scale second.  So, you want
gaminv(0.75,1,2)
% ans = 2.7726
With a shape parameter of 1, this is the same as the exponential distribution:
expinv(0.75,2)
% ans = 2.7726
0 commentaires
Plus de réponses (0)
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!