From: Eric F. <ef...@ha...> - 2005-12-23 20:01:34
|
> > For others trying to use things as they are now, the following quick > fix gets most things to work: Just change __init__.py in > site-packages/matplotlib/numerix/fft from: > > elif which[0] == "scipy": > from scipy.basic.fft import * > to: > > elif which[0] == "scipy": > # from scipy.basic.fft import * > from scipy.basic.fftpack import * > John, It looks like this could be handled in CVS mpl with: elif which[0] == "scipy": from scipy.fftpack import * scipy itself imports basic.fft (released version) or basic.fftpack (SVN) as fftpack, so there is no need to go to scipy.basic. Correct? I haven't tested it yet, though. If no one gets to it sooner, I may be able to take a closer look this evening. Eric |