How to draw two plots in one figure?
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Nazila Pourhajy
le 31 Mai 2022
Réponse apportée : Abhijit Nayak
le 31 Mai 2022
Hi everyone.
I have two plots like this:
I want to have two plots in one figure like this in matlab. But I dont know what to do. please help me Thanks alot..
When I use this commands:
plot(x,y1);
hold on;
plot(x,y2);
hold off;
The result is as follow:
Becaues the values of y in two plots are different.
0 commentaires
Réponse acceptée
Plus de réponses (1)
Abhijit Nayak
le 31 Mai 2022
From my understanding, you are looking for a way to have two plots in one figure with a common x-axis. You can use “yyaxis” function for such scenario.
For further reference, you can refer to the following MATLAB documentation link- .
0 commentaires
Voir également
Catégories
En savoir plus sur Annotations dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!