plot and set y color
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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
Respuestas (1)
Luffy
el 11 de Jul. de 2012
Try this,
figure;
plot(sind(1:360));
set(gca,'YColor','r');
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!