[Matplotlib-users] bug importing numpy with matplotlib.numerix

2006-10-10 Thread Eric Emsellem
Hi, I have a problem when importing numpy from matplotlib.numerix: When I do: import matplotlib import matplotlib.numerix as num # numpy from num import median, std I get: exceptions.ImportError Traceback (most recent call last) ImportErr

Re: [Matplotlib-users] bug importing numpy with matplotlib.numerix

2006-10-10 Thread Darren Dale
Hi Eric, I don't think this is a bug. Your last import doesnt do what you think it is doing. For example: In [1]: import matplotlib as d In [2]: from d import rcParams --- exceptions.ImportError