Effacer les filtres
Effacer les filtres

How can I plot 3 variables on y axis for the same variable on x axis in one plot?

33 vues (au cours des 30 derniers jours)
Sahil Patel
Sahil Patel le 29 Avr 2020
Commenté : Sahil Patel le 1 Mai 2020
I used 'yyaxis' left and right for plotting two variables and then tried 'addaxis.m' fucntion to add another axis. But there seems to be an error with the 'colorord' part.
Is there another way of doing this??
Any help would be great!
Thank you.
link for the package addaxis.m i used :
  2 commentaires
darova
darova le 29 Avr 2020
Don't want to use subplot? OR just scale all data in one plot?
Sahil Patel
Sahil Patel le 1 Mai 2020
I needed it in one plot. Anyway thank you i found the issue.

Connectez-vous pour commenter.

Réponses (1)

Prasad Reddy
Prasad Reddy le 30 Avr 2020
you can use " hold on " command.
you can write your code in the following manner.
plot(x,y1)
hold on
plot(x,y2)
hold on
plot(x,y3)
this will work
%% please give up thumb if this code works.

Community Treasure Hunt

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

Start Hunting!

Translated by