Multiple plots in a single X and y axis

8 visualizzazioni (ultimi 30 giorni)
Hello, I want to write a program that can plot all variables in one graph sheet. A single input variable y-axis and at least 10 input variables on the z-axis.

Risposta accettata

Star Strider
Star Strider il 26 Set 2020
Use the hold function.
Example —
x = linspace(1, 2, 250);
y1 = sin(2*pi*x*5);
y2 = cos(2*pi*x*7);
figure
plot(x, y1)
hold on
plot(x, y2)
hold off
grid
legend('y2','y2')
.
  4 Commenti
Feniobu feniobu
Feniobu feniobu il 26 Set 2020
Thank you very much. It worked as wanted, but please I want to include value from say...h=[0.2 0.8]. But when I ran it the plots fell exactly on the y-axis. How can I add a second x-axis to accommodate this variables and it will show on the graph.
Star Strider
Star Strider il 26 Set 2020
My pleasure!
I do not understand wanting to add a second x-axis when they are all plotted as functions of ‘t’. You can easily concatenate ‘h’ with the rest, and it will plot correctly, just as with the others. Adding it to the legend call is trivial. Scaling the y-axis to log makes them all easily visible.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Line Plots in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by