Hi,

Using the following

>>> pcolor(x,y,z,shading='interp')

is it possible to change the interpolation method used? I noticed that there
are set_interpolation methods for images created using

In [83]: h = imshow( z)

In [84]: h.set_interpolation?
Type:           instancemethod
Base Class:     <type 'instancemethod'>
String Form:    <bound method AxesImage.set_interpolation of
<matplotlib.image.AxesImage object at 0x047B27D0>>
Namespace:      Interactive
File:           c:\python26\lib\site-packages\matplotlib\image.py
Definition:     h.set_interpolation(self, s)
Docstring:
    Set the interpolation method the image uses when resizing.

ACCEPTS: ['nearest' | 'bilinear' | 'bicubic' | 'spline16' |
  'spline36' | 'hanning' | 'hamming' | 'hermite' | 'kaiser' |
  'quadric' | 'catrom' | 'gaussian' | 'bessel' | 'mitchell' |
  'sinc' | 'lanczos' | ]

are these available for pcolor?

Thanks!
------------------------------------------------------------------------------

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

Reply via email to