Vous suivez désormais cette soumission
- Les mises à jour seront visibles dans votre flux de contenu suivi
- Selon vos préférences en matière de communication il est possible que vous receviez des e-mails
GAMMA_INCOMPLETE evaluates the upper incomplete gamma function
(incomplete gamma function of the second kind) $\Gamma(a,x)$
at non-negative values of the argument. This function extends the
MATLAB function gammainc to negative values of the parameter a.
SYNOPSIS: fun=gamma_incomplete(x,a)
INPUT x : function argument
a : parameter
OUTPUT fun : a vector of the same length as x; it contains NaN values
at places where elements of x are negative.
REMARKS 1. This function extends the MATLAB function gammainc
to negative values of the parameter a. 2. For positive a this function is equivalent
to the call fun=gamma(a).*gammainc(x,a,'upper');
EXAMPLES
x=0.01:0.01:8;
f=gamma_incomplete(x,1);
plot(x,f);
x=0.001:0.001:.1;
f=gamma_incomplete(x,-2.3);
plot(x,f);
x=0.001:0.001:.2;
f=gamma_incomplete(x,-1);
plot(x,f);
Citation pour cette source
Andrei Bejan (2026). Evaluation of the upper incomplete gamma function (https://fr.mathworks.com/matlabcentral/fileexchange/29321-evaluation-of-the-upper-incomplete-gamma-function), MATLAB Central File Exchange. Extrait(e) le .
Remerciements
A inspiré : Evaluation of the Laplace transform of the Pareto distribution
Informations générales
- Version 1.0.0.0 (1,46 ko)
Compatibilité avec les versions de MATLAB
- Compatible avec toutes les versions
Plateformes compatibles
- Windows
- macOS
- Linux
| Version | Publié le | Notes de version | Action |
|---|---|---|---|
| 1.0.0.0 |
