[matplotlib-devel] update x axis of a subplot according to the y axis of another one in python/matplotlib

2015-02-11 Thread Alessandro Pietro Bardelli
I would like to plot an orthogonal projection (like this one http://i.stack.imgur.com/DnNds.jpg) using matplotlib possibly including also the 3D subplot. All the pictures should share common axes. |fig= plt.figure() ax= fig.add_subplot(221, title="XZ") bx= fig.add_subplot(222, title="YZ",

Re: [matplotlib-devel] update x axis of a subplot according to the y axis of another one in python/matplotlib

2015-02-11 Thread Benjamin Root
Sounds to me like you want to use glue: http://www.glueviz.org/en/stable/ On Wed, Feb 11, 2015 at 3:15 AM, Alessandro Pietro Bardelli < alessandro.barde...@henesis.eu> wrote: > I would like to plot an orthogonal projection (like this one > http://i.stack.imgur.com/DnNds.jpg) using matplotlib po