y軸ラベルの1段目と2段目で色を変更する方法について
3 views (last 30 days)
Show older comments
y軸ラベルの1段目を赤色,2段目を青色(例のコードですと,2000を赤色・1000を青色)のようにしたいです。
1段目・2段目とも同じ色にはできるのですが,別々に色を指定することは出来るのでしょうか?
figure
plot((1:10).^2)
ylabel({2000;1000})
0 Comments
Answers (1)
Musashi Ito
on 8 Apr 2020
ylabel 関数では文字ごとの色を指定することはできなさそうですね。どうしても表示したい場合は、例えば text 関数を使用して説明のテキストとして 2 つ追加する等の工夫が必要かなと思います。
figure
plot((1:10).^2)
text(0.01,50,'2000','Color',[1 0 0],'Rotation',90,'FontSize',12)
text(0.3,50,'1000','Color',[0 0 1],'Rotation',90,'FontSize',12)
※ figure のウィンドウサイズが変わると座標の間隔が変わるため体裁が崩れるみたいです・・・
See Also
Categories
Find more on Annotations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!