Shortcuts

Function torch::fft::ihfftn

Function Documentation

inline Tensor torch::fft::ihfftn(const Tensor &self, at::OptionalIntArrayRef s = c10::nullopt, IntArrayRef dim = {-2, -1}, c10::optional<c10::string_view> norm = c10::nullopt)

Computes the N-dimensional IFFT of a real input signal.

The output is a onesided representation of the Hermitian symmetric time domain signal. See https://pytorch.org/docs/main/fft.html#torch.fft.ihfftn.

Example:

auto T = torch::randn({128, 128}, torch::kDouble);
auto t = torch::fft::hfft2(T);
assert(t.is_complex() && t.size(1) == 65);

Docs

Access comprehensive developer documentation for PyTorch

View Docs

Tutorials

Get in-depth tutorials for beginners and advanced developers

View Tutorials

Resources

Find development resources and get your questions answered

View Resources