From 0609b4a3383575e0cebc6511fe3fdf20d0c0235d Mon Sep 17 00:00:00 2001 From: Jaidev Deshpande Date: Sun, 17 Jan 2016 13:34:50 +0530 Subject: [PATCH] Change the import order to see if plot compiles on RTFD. Currently failing. --- doc/_gallery/plot_5_4_2_hough_noisy_chirp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/_gallery/plot_5_4_2_hough_noisy_chirp.py b/doc/_gallery/plot_5_4_2_hough_noisy_chirp.py index 0c28fc3..d2f8377 100644 --- a/doc/_gallery/plot_5_4_2_hough_noisy_chirp.py +++ b/doc/_gallery/plot_5_4_2_hough_noisy_chirp.py @@ -22,8 +22,8 @@ from tftb.generators import noisecg, sigmerge, fmlin from tftb.processing.cohen import WignerVilleDistribution from tftb.processing.postprocessing import hough_transform -from mpl_toolkits.mplot3d import Axes3D import matplotlib.pyplot as plt +from mpl_toolkits.mplot3d import Axes3D N = 64 sig = sigmerge(fmlin(N, 0, 0.3)[0], noisecg(N), 1)