在 Matlab 中绘制外轴
如何使用 MATLAB 绘制轴外的内容?我想绘制与此图类似的东西;
谢谢。
How to plot something outside the axis with MATLAB? I had like to plot something similar to this figure;
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是使用两个轴的一种可能的技巧:
这是之前和之后的图:
Here is one possible trick by using two axes:
and here is the plot before and after:
您可以使用所需的比例显示一个轴,然后将数据绘制在另一轴上,该轴不可见且足够大以容纳您需要的数据:
You can display one axis with the scale you want, then plot your data on another axis which is invisible and large enough to hold the data you need:
我遇到了类似的问题,并且由于这个 回答。对于条形系列,代码如下:
I had similar problem and I've solved it thanks to this answer. In case of bar series the code is as follows: