MATLAB 蜡烛图句柄
当我使用
>> load disney;
>> hcndl = candle(dis('3/31/98::4/30/98'))
hcndl =
176.0044
178.0032
177.0031
如何使用此句柄来更改图表的背景颜色时。
谢谢
When I use
>> load disney;
>> hcndl = candle(dis('3/31/98::4/30/98'))
hcndl =
176.0044
178.0032
177.0031
How can I use this handle to change the background color of the chart.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您正在寻找 set 函数。 Set 函数接受图窗的句柄并允许您更改图窗的属性。
I think you're looking for the set function. Set function accepts the handle of the figure and allows you to change the properties of the figure.
您想要修改轴的颜色。
candle
为您提供线的句柄,其父级是您要修改的轴。You want to modify the color of the axes.
candle
gives you handles to lines, whose parent are the axes you'd like to modify.