Re: [Matplotlib-users] logarithmic spectrogram

2008-01-12 Thread Georg Holzmann
Hallo! Thanks for your answer ! > One way would be to use the NonUniformImage class in image.py instead of > the Image class that is being used by the imshow() call in > Axes.specgram. Hm ... I looked into image.py but I don't know how this is used by specgram (sorry, I am a newbie - and did

Re: [Matplotlib-users] (no subject)

2008-01-12 Thread Christiaan Putter
Hi Michael, Sorry for getting back to you only now, and thanks for the help. If you have Qt installed there should be an sample Svg viewer app in the examples somewhere. If you'd like I can send it to you somehow, just let me know. I tested the new .svg you sent me it's rendering the same in Fi

Re: [Matplotlib-users] Static linking problem on matplotlib eggs

2008-01-12 Thread Christopher Fonnesbeck
Thanks Charlie, I've done this, but for some reason, its still looking for things in / usr/local: In file included from src/ft2font.h:11, from src/ft2font.cpp:2: /usr/local/include/ft2build.h:56:38: error: freetype/config/ ftheader.h: No such file or directory cf On 12/01/20

Re: [Matplotlib-users] Static linking problem on matplotlib eggs

2008-01-12 Thread Charlie Moad
I just had to rebuild the OSX binary because a similar reason. I forgot to change the basedir['darwin'] entry in setupext.py. Around line 50. Change: 'darwin' : ['/sw/lib/freetype2', '/sw/lib/freetype219', '/usr/local', '/usr', '/sw', '/usr/X11R6'], To: 'darwin' : [],

Re: [Matplotlib-users] logarithmic spectrogram

2008-01-12 Thread Eric Firing
Georg Holzmann wrote: > Hallo! > > (Sorry if this is maybe a basic question, but I did not find something > in the archives or in the net) > > I am trying to make a spectrogram of audio data with the function > "specgram", where the frequency axis is logarithmic (as it is used > usually in au

[Matplotlib-users] Static linking problem on matplotlib eggs

2008-01-12 Thread Chris
I'm trying to build some matplotlib eggs to bundle and distribute with some other python packages. So, I am doing my best to statically link to libraries like libpng, libfreetype, etc. that users may not have installed. I am building using the following: python setupegg.py config -L../staticlibs b

[Matplotlib-users] logarithmic spectrogram

2008-01-12 Thread Georg Holzmann
Hallo! (Sorry if this is maybe a basic question, but I did not find something in the archives or in the net) I am trying to make a spectrogram of audio data with the function "specgram", where the frequency axis is logarithmic (as it is used usually in audio/speech processing). However, "specg