comparison numerics/interpolation.py @ 36:285a886255e4

missing import
author Jeff Hammel <k0scist@gmail.com>
date Fri, 21 Nov 2014 13:07:01 -0800
parents 7517682843cb
children 2891db98a9b7
comparison
equal deleted inserted replaced
35:f1168ca2aa4c 36:285a886255e4
2 2
3 3
4 """ 4 """
5 interpolation 5 interpolation
6 """ 6 """
7
8 import argparse
7 9
8 __all__ = ['neighbors', 'linear_interpolation', 'InterpolateParser'] 10 __all__ = ['neighbors', 'linear_interpolation', 'InterpolateParser']
9 11
10 def neighbors(start, finish): 12 def neighbors(start, finish):
11 """ 13 """