patch with same color as border

조회 수: 51 (최근 30일)
Mohsen
Mohsen 2019년 9월 2일
댓글: Star Strider 2024년 3월 21일
When using a "patch" command the border is black and interior is of the chosen color. How do I make both have same color, for example a circle that is blue and its border is also blue? I have tried to redraw the border separately in blue color, but then I get a few scattered speckles of black.

채택된 답변

Star Strider
Star Strider 2019년 9월 2일
The easiest way is to use the patch function EdgeColor property. You can color it to be the same as the patch face color, or you can turn it off with the 'none' option.
  댓글 수: 2
Lawrence
Lawrence 2024년 3월 21일
Hello - I am trying to plot a patch with with per-face edge color. i.e. the faces colors are individually specified, and I'd like the edge colors for each face to be inherited from the face color.
I have read through the Patch documentation but I can't figure out how to do what you're describing.
I want the edges of each face to have the same color, and I want this color to be the same as the face color they belong to. Do you have any ideas? Thanks!
Star Strider
Star Strider 2024년 3월 21일
Other than specifying that the edge colour is the same as the face colour, for example
patch(xvals, yvals, 'g', 'EdgeColor','g')
I don’t.
I suggest posting this as a new question, if this does not solve your problem —
figure
patch([1 2 2 1], [1 1 2 2], 'g', 'EdgeColor','g')
axis('padded')
axis('equal')
.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Polygons에 대해 자세히 알아보기

태그

제품


릴리스

R2015b

Community Treasure Hunt

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

Start Hunting!

Translated by