从轮廓图中删除线条

发布于 2024-11-04 21:15:52 字数 121 浏览 2 评论 0原文

大家好 我正在使用脚本轻松生成绘图,并且布局完全相同。

这就是为什么我想自动创建给定数据的轮廓图,而不需要黑色轮廓线。我可以通过高级图形布局手动完成,有命令吗?

感谢您的建议;我不知道如何解决它。

Hi all
I'm using scripts for generating plots easily and with exactly the same layout.

That's why I'd like to create contourf graph of given data automaticcaly without black contour lines. I can do it manually by advanced figure layout, byt is there a command for it?

Thanks for suggestions; I have no idea how to solve it.

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

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

发布评论

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

评论(3

淡忘如思 2024-11-11 21:15:52

您可以通过在初始调用 CONTOURF

contourf(peaks(20),10,'LineColor','none');

或者通过在创建句柄图形对象后修改它:

[C,h] = contourf(peaks(20),10);
set(h,'LineColor','none');

You can remove the black lines by setting the 'LineColor' property to 'none', either in the initial call to CONTOURF:

contourf(peaks(20),10,'LineColor','none');

Or by modifying the handle graphics object after creating it:

[C,h] = contourf(peaks(20),10);
set(h,'LineColor','none');
我的奇迹 2024-11-11 21:15:52

无论您可以通过手动编辑做什么,您也可以通过编程来完成。对于 contourf,您可以执行以下操作:

[~,h] = contourf(peaks(20),10);
set(h,'LineColor','none')

请参阅此处< /a> 获取可以使用 set 命令修改的所有属性。

Whatever you can do with manual editing you can also do programmatically. For contourf, you can do the following:

[~,h] = contourf(peaks(20),10);
set(h,'LineColor','none')

See here for all the properties you can modify using the set command.

影子是时光的心 2024-11-11 21:15:52
'shading flat' will do the job.
'shading flat' will do the job.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文