From 0738025d386e0aa0e274ded20afdf000b22a1635 Mon Sep 17 00:00:00 2001 From: Eric Kunze Date: Thu, 2 Jun 2022 08:30:18 -0700 Subject: Make the use of inverse in FFT2D definition consistent The captions for the images used 'direction', instead of 'inverse' which is the attribute name. Signed-off-by: Eric Kunze Change-Id: I4d8ab9642288efb984d03b7862068e09334ce8f6 --- chapters/tensor_ops.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chapters/tensor_ops.adoc b/chapters/tensor_ops.adoc index b3f6f5a..bd5ffde 100644 --- a/chapters/tensor_ops.adoc +++ b/chapters/tensor_ops.adoc @@ -342,12 +342,12 @@ No normalization is applied on either the forward or inverse versions of the ope // output[h][w] = \sum_{m=0}^{H-1}\sum_{n=0}^{W-1}input[m][n] * \exp\left(-2\pi i\left(\frac{mh}{H} + \frac{nw}{W}\right)\right) -.Calculation for the forward FFT2D calculation (direction=false) +.Calculation for the forward FFT2D calculation (inverse=false) image::forward_fft2d.svg["forward FFT definition", align="center"] // output[h][w] = \sum_{m=0}^{H-1}\sum_{n=0}^{W-1}input[m][n] * \exp\left(2\pi i\left(\frac{mh}{H} + \frac{nw}{W}\right)\right) -.Calculation for the inverse FFT2D calculation (direction=true) +.Calculation for the inverse FFT2D calculation (inverse=true) image::inverse_fft2d.svg["inverse FFT definition", align="center"] *Arguments:* -- cgit v1.2.1