How can I get multiple plots on one graph, not overlapping?

53 次查看(过去 30 天)
I need to plot 3 graphs on the same figure. I have attached two figures. In my current figure, they are all overlapping. The second figure (black and white) is what I need the plot to look like (it has to look exactly like this for the assignment). So I don't want subplots, but I do need some way to separate the plots so that you can see them all on the same plot, just not on top of each other. Could anybody help me with this, please?

采纳的回答

the cyclist
the cyclist 2021-9-24
What an ugly and potentially confusing plotting style. Too bad you are being coerced into doing it that way.
One way to do this is to manually move the plots upward from each other by adding a fixed offset to them (the +2 and +4 you see in my code below), and then kludge the y-axis labels accordingly.
rng default
x = 1:100;
y_H = rand(1,100);
y_M = rand(1,100);
y_L = rand(1,100);
figure
hold on
plot(x,y_H + 4);
plot(x,y_M + 2);
plot(x,y_L);
set(gca,'YTick',0:0.5:5,'YTickLabel',[0 0.5 1 1.5 0 0.5 1 1.5 0 0.5 1])
  1 个评论
Emily LaPrime
Emily LaPrime 2021-9-24
Thank you so much! I had to do some messing around with the Property Editor also, but I was able to figure it out. Much appreciated!

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

产品


版本

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by