Re: [Matplotlib-users] changing x axis to y and y axis to x in colorbar Object

2009-06-06 Thread feldmaus
Eric Firing efir...@... writes: I don't understand what your question has to do with the colorbar; but in anything like pcolor, if you swap X and Y, then at the same time you need to transpose Z. Thanks, that was my Problem i had to transpose my z. :-) numpy.transpose(z) Regards Markus

Re: [Matplotlib-users] changing x axis to y and y axis to x in colorbar Object

2009-06-05 Thread Eric Firing
Markus Feldmann wrote: Hi All, i try to get a colorbar to work with: if not hasattr(self, 'subplot3'): self.subplot3 = self.figure.add_subplot(111) self.subplot3.grid(True) x,y,z = self.computehistogramm(min,min+self.maxitems) X,Y =