Combining separate graphs into one and changing the scale to match

1 次查看(过去 30 天)
I have two seprate graphs obtained from Simulink. I am able to plot them individually however I need to plot then one over another.
How do I scale the graph so that they match each other? To be able to find the area where they do not overlap.

采纳的回答

Thiago Henrique Gomes Lobato
You can do the first plot, plot the second one over it and then rescale the y axis to the values of the first plot (since the second has a way bigger value range) . Something like:
plot(time,data1)
hold on
plot(time,data2)
ylim([120,300])

更多回答(0 个)

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by