Multiple Plots On Same Page
3 次查看(过去 30 天)
显示 更早的评论
So I have to plot certain data (90 graphs total) and a single graph looks like this.
However when I
hold on
and plot 90 sets superimposed, it looks just like a patch of multiple colours.
Now what would be the most optimal way to represent the plots that can let us compare them and study the difference. For example (and this is just my thought and I am open to opnions) comparign these 90 plots in a Matrix fashion using
subplot
is really not a great idea! What would be the best idea to compare them side by side? Any suggestions? Thanks.
3 个评论
Geoff Hayes
2016-5-1
编辑:Geoff Hayes
2016-5-1
I would use subplots and ensure that the interval for each axes is identical for each subplot. So for all of your 90 plots, determine the minimum and maximum values for the x and y axes, and then set the axes interval for each subplot. See axis limits for details.
Else, create a GUI that allows the user to select any two (or more?) of the 90 plots to compare them side-by-side.
回答(1 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!