plot and set y color

12 ビュー (過去 30 日間)
Vincent I
Vincent I 2012 年 7 月 11 日
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
John Petersen 2012 年 7 月 11 日
Did you try
set(handles.Axes1,'YColor','r')
Vincent I
Vincent I 2012 年 7 月 11 日
yes, i remember trying and i think it didnt work... however it does work thank you

サインインしてコメントする。

回答 (1 件)

Luffy
Luffy 2012 年 7 月 11 日
Try this,
figure;
plot(sind(1:360));
set(gca,'YColor','r');

カテゴリ

Help Center および File ExchangeGraphics Object Properties についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by