From 1729997387fd2ed8ddedbf44dcd90d3d8c4254ca Mon Sep 17 00:00:00 2001 From: "per.andreas.brodtkorb" Date: Mon, 6 Dec 2010 21:03:28 +0000 Subject: [PATCH] --- pywafo/src/wafo/kdetools.py | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/pywafo/src/wafo/kdetools.py b/pywafo/src/wafo/kdetools.py index 56d25d2..531c66e 100644 --- a/pywafo/src/wafo/kdetools.py +++ b/pywafo/src/wafo/kdetools.py @@ -10,17 +10,16 @@ #------------------------------------------------------------------------------- #!/usr/bin/env python from __future__ import division +from itertools import product +#from misc import tranproc, trangood +from numpy import pi, sqrt, atleast_2d, exp, newaxis #@UnresolvedImport +from scipy import interpolate, linalg +from scipy.special import gamma +from wafo.misc import meshgrid import copy -import warnings import numpy as np -from numpy import pi, sqrt, atleast_2d, exp, newaxis, array #@UnresolvedImport import scipy -from scipy import interpolate -from scipy import linalg -from scipy.special import gamma -from misc import tranproc, trangood -from itertools import product -from wafo.misc import meshgrid +import warnings _stats_epan = (1. / 5, 3. / 5, np.inf) _stats_biwe = (1. / 7, 5. / 7, 45. / 2)