torch.special.sinc
function sinc(input: Tensor): Tensor
Computes the normalized sinc function of each element in the input tensor.
sinc(x)={πxsin(πx)1if x=0if x=0
Parameters
Returns
Tensor– A new tensor with sinc(x) values element-wise
See Also