本文简要介绍python语言中 torch.fft.rfftfreq
的用法。
用法:
torch.fft.rfftfreq(n, d=1.0, *, out=None, dtype=None, layout=torch.strided, device=None, requires_grad=False) → Tensor
out(Tensor,可选的) -输出张量。
dtype(
torch.dtype
, 可选的) -返回张量的所需数据类型。默认值:如果None
,使用全局默认值(参见torch.set_default_tensor_type()
)。layout(
torch.layout
, 可选的) -返回张量的所需布局。默认值:torch.strided
。device(
torch.device
, 可选的) -返回张量的所需设备。默认值:如果None
,使用当前设备作为默认张量类型(参见torch.set_default_tensor_type()
)。device
将是 CPU 张量类型的 CPU 和 CUDA 张量类型的当前 CUDA 设备。requires_grad(bool,可选的) -如果 autograd 应该在返回的张量上记录操作。默认值:
False
。
使用大小为
n
的信号计算rfft()
的采样频率。注意
rfft()
返回埃尔米特单侧输出,因此仅返回正频率项。对于长度为n
且输入以长度单位d
间隔的实数 FFT,频率为:f = torch.arange((n + 1) // 2) / (d * n)
注意
对于偶数长度,
f[n/2]
处的奈奎斯特频率可以被视为负或正。与fftfreq()
不同,rfftfreq()
始终将其返回为正值。示例
>>> torch.fft.rfftfreq(5) tensor([0.0000, 0.2000, 0.4000])
>>> torch.fft.rfftfreq(4) tensor([0.0000, 0.2500, 0.5000])
与
fftfreq()
的输出相比,我们看到f[2]
处的奈奎斯特频率已经改变了符号: >>> torch.fft.fftfreq(4) tensor([ 0.0000, 0.2500, -0.5000, -0.2500])
参数:
关键字参数:
相关用法
- Python PyTorch rfftn用法及代码示例
- Python PyTorch rfft用法及代码示例
- Python PyTorch rfft2用法及代码示例
- Python PyTorch renorm用法及代码示例
- Python PyTorch rpc_sync用法及代码示例
- Python PyTorch reshape用法及代码示例
- Python PyTorch rand_split_train_val用法及代码示例
- Python PyTorch randn用法及代码示例
- Python PyTorch rad2deg用法及代码示例
- Python PyTorch real用法及代码示例
- Python PyTorch rsqrt用法及代码示例
- Python PyTorch rpc_async用法及代码示例
- Python PyTorch repeat_interleave用法及代码示例
- Python PyTorch random_split用法及代码示例
- Python PyTorch remove用法及代码示例
- Python PyTorch read_vec_flt_ark用法及代码示例
- Python PyTorch register_kl用法及代码示例
- Python PyTorch read_vec_int_ark用法及代码示例
- Python PyTorch round用法及代码示例
- Python PyTorch resolve_neg用法及代码示例
- Python PyTorch remainder用法及代码示例
- Python PyTorch register_module_forward_pre_hook用法及代码示例
- Python PyTorch random_structured用法及代码示例
- Python PyTorch remote用法及代码示例
- Python PyTorch rand用法及代码示例
注:本文由纯净天空筛选整理自pytorch.org大神的英文原创作品 torch.fft.rfftfreq。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。