Pytorch Torch Igammac
# PyTorch torch.igammac Function
* * Pytorch torch Reference Manual](#)
`torch.igammac` is a function in PyTorch used to compute the element-wise complementary incomplete gamma function.
### Function Definition
torch.igammac(input, other, out=None)
* * *
## Usage Example
## Example
import torch
# Compute complementary incomplete gamma function
x = torch.tensor([1.0,2.0,3.0])
a = torch.tensor([1.0,1.0,1.0])
result = torch.igammac(a, x)
print(result)
* * Pytorch torch Reference Manual](#)
YouTip