Re: [matplotlib-devel] imshow interpolation artifacts

2008-01-31 Thread Michael Droettboom
Fixed in SVN r4910. It was a mistake when upgrading agg from 2.3 to 2.4. Cheers, Mike Darren Dale wrote: > I just wanted to report some artifacts that appear when I use imshow from the > trunk: > > a=arange(1) > a.shape=(100,100) > #ok: > figure() > imshow(a,interpolation='nearest') > figu

[matplotlib-devel] imshow interpolation artifacts

2008-01-31 Thread Darren Dale
I just wanted to report some artifacts that appear when I use imshow from the trunk: a=arange(1) a.shape=(100,100) #ok: figure() imshow(a,interpolation='nearest') figure() imshow(a,interpolation='bilinear') #odd: figure() imshow(a,interpolation='bicubic') figure() imshow(a,interpolation='spli