pytorch / 1.8.0 / generated / torch.igammac.html /

torch.igammac

torch.igammac(input, other, *, out=None) → Tensor

Computes the regularized upper incomplete gamma function:

out i = 1 Γ ( input i ) other i t input i 1 e t d t \text{out}_{i} = \frac{1}{\Gamma(\text{input}_i)} \int_{\text{other}_i}^{\infty} t^{\text{input}_i-1} e^{-t} dt

where both input i \text{input}_i and other i \text{other}_i are weakly positive and at least one is strictly positive. If both are zero or either is negative then out i = nan \text{out}_i=\text{nan} . Γ ( ) \Gamma(\cdot) in the equation above is the gamma function,

Γ ( input i ) = 0 t ( input i 1 ) e t d t . \Gamma(\text{input}_i) = \int_0^\infty t^{(\text{input}_i-1)} e^{-t} dt.

See torch.igamma() and torch.lgamma() for related functions.

Supports broadcasting to a common shape and float inputs.

Note

The backward pass with respect to input is not yet supported. Please open an issue on PyTorch’s Github to request it.

Parameters
  • input (Tensor) – the first non-negative input tensor
  • other (Tensor) – the second non-negative input tensor
Keyword Arguments

out (Tensor, optional) – the output tensor.

Example:

>>> a1 = torch.tensor([4.0])
>>> a2 = torch.tensor([3.0, 4.0, 5.0])
>>> a = torch.igammac(a1, a2)
tensor([0.6472, 0.4335, 0.2650])
>>> b = torch.igamma(a1, a2) + torch.igammac(a1, a2)
tensor([1., 1., 1.])

© 2019 Torch Contributors
Licensed under the 3-clause BSD License.
https://pytorch.org/docs/1.8.0/generated/torch.igammac.html