How can I use greek symbols in plot labels?
147 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I have a plot x axis of which is formed of an array like [ 20 25 30...]
But I want x-axis to appear like lambda/20 lambda/25 etc.
Could you please help me?
0 件のコメント
採用された回答
Mischa Kim
2014 年 10 月 4 日
編集済み: Mischa Kim
2014 年 10 月 4 日
Merve, you mean something like
lambda = 20:5:40;
y = 1./lambda;
plot(lambda,y)
xlabel('{\lambda}')
set(gca,...
'xtick',lambda,...
'xticklabel',{'l/20' 'l/25' 'l/30' 'l/35' 'l/40'},'fontname','symbol')
その他の回答 (2 件)
Sehrish Bibi
2021 年 11 月 21 日
How to write beta symbol in matlab for labeling graphs
1 件のコメント
Walter Roberson
2021 年 11 月 21 日
xlabel('$\beta$', 'interpreter', 'latex')
ylabel('\beta', 'interpreter', 'tex')
Camilo Malagon Nieto
2019 年 5 月 23 日
A good info of how to deal with the greek characters syntaxis can can be found at.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Labels and Annotations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!