在MATLAB中使用“填充”功能时,如何更改边线颜色?

时间:2010-09-25 21:24:17

标签: matlab graphics colors plot shapes

我正在编写代码,我使用MATLAB的fill命令绘制2D形状。我可以指定形状的填充颜色。但是,边框线颜色始终为黑色。我希望边框线颜色与填充颜色相同。我怎样才能指定边框线颜色?

2 个答案:

答案 0 :(得分:9)

请参阅this thread

To set the edgecolor to white do the following.

h = fill([-1 -1 1 1],[-1 1 1 -1],'w');
axis([-2 2 -2 2]);
set(h,'edgecolor','white');

应该照顾边界。

答案 1 :(得分:8)

除了schnaader's answer之外,您还可以在初始调用FILL中设置边缘颜色:

hPatch = fill(xData,yData,'r','EdgeColor','r');  %# Red patch with red edges

或者完全停止绘制边缘:

hPatch = fill(xData,yData,'r','EdgeColor','none');  %# Red patch with no edges