MATLAB - 你能制作多个直方图吗?
我想在一张图中绘制多个直方图,就像 subplot 命令一样,仅使用直方图。有没有办法在 MATLAB 中做到这一点?
I want to make multiple plots of a histogram in one figure, like the subplot command, only with histograms. Is there a way to do this in MATLAB?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在不同的次要情节中?
In different subplots?
使用 Hold on 可以将多个直方图放入一张图中。但是,在绘制下一个直方图之前,您需要更改第一个直方图的颜色。
不过,在比较直方图时应小心,因为直方图箱是单独生成的。
我使用以下添加来解决此问题:
It's possible to put multiple histograms in one figure using hold on. However, you'll need to change the color for the first histogram before you plot the next one.
You should take caution when comparing the histograms though, since the histogram bins are generated separately.
I use the following additions to resolve this: