plot and set y color
Mostra commenti meno recenti
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 Commenti
John Petersen
il 11 Lug 2012
Did you try
set(handles.Axes1,'YColor','r')
Vincent I
il 11 Lug 2012
Risposte (1)
Luffy
il 11 Lug 2012
Try this,
figure;
plot(sind(1:360));
set(gca,'YColor','r');
Categorie
Scopri di più su Graphics Performance in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!