|
From: Fernando P. <Fer...@co...> - 2005-02-10 19:25:54
|
Stephen Walton wrote: > I can't seem to get loglog plots to work. Attached is a dump of ipython > showing what I tried and what happened. In case you don't want to wade > through this, just try the following: > > hold(False) > x=arange(25)+1 > loglog(x,x**2) # throws error > close(1) > plot(log(x),log(x**2)) # works > close(1) > plot(x,x**2) > plot(log(x),log(x**2)) # throws error > loglog(x,x**2) # also throws error This works fine, but only with current CVS. I've been giving John a ton of nasty tests for log plotting, and he's fixed most problems. I do still have a dataset which causes an abort in the C++ extension code, but he's looking into it already. So in short, if you update to CVS, most of your log problems will be fixed. And John should have the last remaining nasty killed soon. Additionally, CVS has dramatic performance improvements in several areas, noticeable mostly for plots with many elements. Best, f |