On Fri, Apr 3, 2009 at 5:10 PM, abel deuring <[email protected]> wrote:
> Use either: > > from math import cos > x = cos(1) > > or > > import math > x = math.cos(1) That doesn't work with ImageMath.eval - it provides its own environment (including the names you pass in). It does the trick if you're using "point" instead, though. </F> _______________________________________________ Image-SIG maillist - [email protected] http://mail.python.org/mailman/listinfo/image-sig
