>>>>> "humufr" == humufr  <[EMAIL PROTECTED]> writes:

    humufr> Hi, I have a problem with subplot_adjust but I don't know
    humufr> if it's a bug or because I didn't understand how to use
    humufr> it...

    humufr> I would like to create a 2 by 3 plots without space
    humufr> between the subplot and I can't arrive to manage it...


    humufr> Is the results of the next script is normal?

Definitely a bug.  I always write code like the following, which
works.  

  fig1 = pylab.figure()
  fig1.subplots_adjust(wspace=0,hspace=0)

  ax1 = fig1.add_subplot(231)
  ax2 = fig1.add_subplot(232)
  ax3 = fig1.add_subplot(233)
  ax4 = fig1.add_subplot(234)
  ax5 = fig1.add_subplot(235)
  ax6 = fig1.add_subplot(236)


The problem is in pylab subplot, which has the feature of deleting new
subplots if they overlap old ones.  Basically it is a problem of an
open ended versus closed ended overlap test.  The overlap function is
indicating the two axes overlap when the hspace or wspace is zero, and
should not.  I need to tweak the overlap function to take an optional
arg so that endpoint overlap is OK.

JDH

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to