different font sizes for y labels

6 ビュー (過去 30 日間)
Hamid
Hamid 2019 年 4 月 21 日
回答済み: Hamid 2019 年 4 月 21 日
Hello,
I want to have different font sizes for y-labels. for example in this simple plot, I want to have -2 and 2 in y-axis in font 16 and the rest in font 12:
x = -1:0.01:1;
y = 3*asin(x);
plot(x,y)
set(gca,'Ytick',[-4, -2, 0, 2, 4])

採用された回答

Walter Roberson
Walter Roberson 2019 年 4 月 21 日
set(gca, 'fontsize', 16) %the larger of the font sizes
set(gca, 'YTickLabels', {'\fontsize{12}{-4}', '-2', '\fontsize{12}{0}', '2', '\fontsize{12}{4}'})

その他の回答 (1 件)

Hamid
Hamid 2019 年 4 月 21 日
Thank you very much!

カテゴリ

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