Borrar filtros
Borrar filtros

Combining separate graphs into one and changing the scale to match

6 visualizaciones (últimos 30 días)
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.

Respuesta aceptada

Thiago Henrique Gomes Lobato
Thiago Henrique Gomes Lobato el 9 de Feb. de 2020
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])

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by