使用“填充”时如何更改边缘线颜色MATLAB 中的函数?

发布于 2024-09-25 13:30:04 字数 115 浏览 3 评论 0原文

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

I'm writing code in which I use MATLAB's fill command to plot 2D shapes. I can specify the fill color of the shape. However, the border line color is always black. I want the border line color the same as the fill color. How can I also specify the border line color?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

南七夏 2024-10-02 13:30:04

请参阅此线程

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');

应该处理边框。

See 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');

that should take care of the border.

长途伴 2024-10-02 13:30:04

除了 schnaader的回答,您还可以在初始调用中设置边缘颜色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

In addition to schnaader's answer, you can also set the edge color in the initial call to FILL:

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

Or stop the edges from being drawn altogether:

hPatch = fill(xData,yData,'r','EdgeColor','none');  %# Red patch with no edges
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文