Hi, I'm trying to make a large grid of subplots with no spacing between.  The
following code fails for any grid size larger than 6x6 by skipping a row and
a column.

for i in xrange(1,65):
    subplot(8,8,i)
    plot( [0,1] )
    subplots_adjust(hspace=0,wspace=0)

Is there a way around this problem?

Thanks,
Adam
-- 
View this message in context: 
http://www.nabble.com/subplots-with-no-space-between-limited-to-6x6--tp24255224p24255224.html
Sent from the matplotlib - users mailing list archive at Nabble.com.


------------------------------------------------------------------------------
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to