Hello,

it seems that there are two minor bugs in matplotlib concerning the 
logspace function.

1) line 93 of mlab.py:
def logspace(xmin,xmax,N):
   return exp(linspace(log(xmin), log(xmax),Nh))
- should be N or Nh in the both lines;

2) pylab  does not import logspace at all:
line 293 of pylab.py:
from matplotlib.mlab import linspace, ...
- should be
from matplotlib.mlab import linspace, logspace, ...

I have just found matplotlib, and it seems to me that it is very good 
and promising product, albeit not yet as polished as octave/gnuplot 
pair. The mathtext feature which eliminates all hassles with psfrag is 
especially useful.

Best wishes,
Farid.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
Matplotlib-devel mailing list
Matplotlib-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-devel

Reply via email to