plot and set y color
이전 댓글 표시
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
John Petersen
2012년 7월 11일
Did you try
set(handles.Axes1,'YColor','r')
Vincent I
2012년 7월 11일
답변 (1개)
Luffy
2012년 7월 11일
Try this,
figure;
plot(sind(1:360));
set(gca,'YColor','r');
카테고리
도움말 센터 및 File Exchange에서 Graphics Performance에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!