从轮廓图中删除线条
大家好 我正在使用脚本轻松生成绘图,并且布局完全相同。
这就是为什么我想自动创建给定数据的轮廓图,而不需要黑色轮廓线。我可以通过高级图形布局手动完成,有命令吗?
感谢您的建议;我不知道如何解决它。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以通过在初始调用 CONTOURF:
或者通过在创建句柄图形对象后修改它:
You can remove the black lines by setting the
'LineColor'
property to'none'
, either in the initial call to CONTOURF:Or by modifying the handle graphics object after creating it:
无论您可以通过手动编辑做什么,您也可以通过编程来完成。对于
contourf
,您可以执行以下操作:请参阅此处< /a> 获取可以使用
set
命令修改的所有属性。Whatever you can do with manual editing you can also do programmatically. For
contourf
, you can do the following:See here for all the properties you can modify using the
set
command.