plot and set y color

12 vues (au cours des 30 derniers jours)
Vincent I
Vincent I le 11 Juil 2012
I'm trying to plot and set the y color in the same time but it doesnt work
plot(handles.Axes1,x,y,'Color','r','YColor','r')
i also tried
plot(handles.Axes1,x,y,'Color','r')
set(gca,'ycolor','r')
but didnt work... Thank you
  3 commentaires
John Petersen
John Petersen le 11 Juil 2012
Did you try
set(handles.Axes1,'YColor','r')
Vincent I
Vincent I le 11 Juil 2012
yes, i remember trying and i think it didnt work... however it does work thank you

Connectez-vous pour commenter.

Réponses (1)

Luffy
Luffy le 11 Juil 2012
Try this,
figure;
plot(sind(1:360));
set(gca,'YColor','r');

Catégories

En savoir plus sur Graphics Object Properties dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by