fftshift 的倒数。
用法
tf.signal.ifftshift(
x, axes=None, name=None
)
参数
-
x
Tensor
,输入张量。 -
axes
int
或形状tuple
要计算的轴。默认为无,这会移动所有轴。 -
name
操作的可选名称。
返回
-
A
Tensor
,移位的张量。
尽管even-length x 的函数相同,但odd-length x 的函数却有一个样本不同。
例如:
x = tf.signal.ifftshift([[ 0., 1., 2.],[ 3., 4., -4.],[-3., -2., -1.]])
x.numpy() # array([[ 4., -4., 3.],[-2., -1., -3.],[ 1., 2., 0.]])
numpy 兼容性
相当于 numpy.fft.ifftshift。https://docs.scipy.org/doc/numpy/reference/generated/numpy.fft.ifftshift.html
相关用法
- Python tf.signal.inverse_mdct用法及代码示例
- Python tf.signal.inverse_stft用法及代码示例
- Python tf.signal.overlap_and_add用法及代码示例
- Python tf.signal.frame用法及代码示例
- Python tf.signal.linear_to_mel_weight_matrix用法及代码示例
- Python tf.signal.fftshift用法及代码示例
- Python tf.signal.mfccs_from_log_mel_spectrograms用法及代码示例
- Python tf.size用法及代码示例
- Python tf.summary.scalar用法及代码示例
- Python tf.strings.substr用法及代码示例
- Python tf.strings.reduce_join用法及代码示例
- Python tf.sparse.cross用法及代码示例
- Python tf.sparse.mask用法及代码示例
- Python tf.strings.regex_full_match用法及代码示例
- Python tf.sparse.split用法及代码示例
- Python tf.strings.regex_replace用法及代码示例
- Python tf.strings.length用法及代码示例
- Python tf.strided_slice用法及代码示例
- Python tf.sparse.to_dense用法及代码示例
- Python tf.strings.bytes_split用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.signal.ifftshift。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。