pcolor

12 次查看(过去 30 天)
Arundhatee Talukdar
Arundhatee Talukdar 2011-11-16
How to get rid of the black lines at the edge of each changing color?
  6 个评论
Walter Roberson
Walter Roberson 2011-11-16
Kelly, pcolor does color interpretation for the faces according to the colors of the vertices (which are not drawn), so the color of any one face is not directly associated with a single point value and instead is an interpolation according to what is nearby.
Kelly Kearney
Kelly Kearney 2011-11-16
That's true only if the shading scheme is set to interpolated. Otherwise, the color is associated with a single vertex, and in Image Analyst's example, each cell with a 1 in its upper right corner is indeed the same color as other 1-cells, regardless of its neighbors.

请先登录,再进行评论。

回答(2 个)

Jonathan
Jonathan 2011-11-16
hand = pcolor(hadamard(20))
set(hand, 'linestyle', 'none')
  3 个评论
Arundhatee Talukdar
Arundhatee Talukdar 2011-11-16
I am using pcolor(X,Y, Z)
In that case, how I do this?
Jonathan
Jonathan 2011-11-16
hand = pcolor(X,Y, Z)
set(hand, 'linestyle', 'none')

请先登录,再进行评论。


Kelly Kearney
Kelly Kearney 2011-11-16
Alternatively
pcolor(X,Y,Z);
shading flat;

类别

Help CenterFile Exchange 中查找有关 Creating, Deleting, and Querying Graphics Objects 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by