aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/ops/spectral_ops.py
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/python/ops/spectral_ops.py')
-rw-r--r--tensorflow/python/ops/spectral_ops.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/python/ops/spectral_ops.py b/tensorflow/python/ops/spectral_ops.py
index 293aace728..da5884e746 100644
--- a/tensorflow/python/ops/spectral_ops.py
+++ b/tensorflow/python/ops/spectral_ops.py
@@ -180,9 +180,9 @@ def dct(input, type=2, n=None, axis=-1, norm=None, name=None): # pylint: disabl
"""Computes the 1D [Discrete Cosine Transform (DCT)][dct] of `input`.
Currently only Types II and III are supported. Type II is implemented using a
- length `2N` padded @{tf.spectral.rfft}, as described here:
+ length `2N` padded `tf.spectral.rfft`, as described here:
https://dsp.stackexchange.com/a/10606. Type III is a fairly straightforward
- inverse of Type II (i.e. using a length `2N` padded @{tf.spectral.irfft}).
+ inverse of Type II (i.e. using a length `2N` padded `tf.spectral.irfft`).
@compatibility(scipy)
Equivalent to scipy.fftpack.dct for Type-II and Type-III DCT.