From ae9d48ac08b9186c46e11adb450df64107e038bd Mon Sep 17 00:00:00 2001 From: rohanbabbar04 Date: Sat, 18 Feb 2023 11:16:33 +0530 Subject: [PATCH] Updated plot_fft.py --- examples/plot_fft.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/examples/plot_fft.py b/examples/plot_fft.py index fa59d2d9..3017fc46 100644 --- a/examples/plot_fft.py +++ b/examples/plot_fft.py @@ -6,11 +6,10 @@ and :py:class:`pylops.signalprocessing.FFTND` operators to apply the Fourier Transform to the model and the inverse Fourier Transform to the data. """ -import pylops -import numpy as np - import matplotlib.pyplot as plt +import numpy as np +import pylops plt.close("all") @@ -196,4 +195,3 @@ axs[1][1].set_title("Error") axs[1][1].axis("tight") fig.tight_layout() -plt.show()