diff --git a/chaco/examples/demo/advanced/scalar_image_function_inspector.py b/chaco/examples/demo/advanced/scalar_image_function_inspector.py index b91a519bd..f498ecddf 100644 --- a/chaco/examples/demo/advanced/scalar_image_function_inspector.py +++ b/chaco/examples/demo/advanced/scalar_image_function_inspector.py @@ -130,7 +130,7 @@ def compute_model(self): x, y = meshgrid(gridx, gridy) d = dict(x=x, y=y) - exec("from scipy import *", d) + exec("from numpy import *", d) exec("from scipy.special import *", d) try: self.zs = eval(self.function, d)