How to display Greek characters under each barchart culumn?
2 ビュー (過去 30 日間)
古いコメントを表示
Hi
I want to the assign greek character below each bar chart column. However, it is not displaying the greek characters
The example of the code is below:
Number=[10 30 50 60 18 20]
bar(Number)
set(gca,'xticklabel',{'\alpha','M_{q}','M_n','Z_alpha','zeta','\omega'})
Hear from you people!
0 件のコメント
採用された回答
the cyclist
2014 年 11 月 1 日
Did your code properly display the first alpha? That one worked for me. I then tweaked the other ones for the small syntax errors you made:
Number=[10 30 50 60 18 20]
bar(Number)
set(gca,'xticklabel',{'\alpha','M_{q}','M_n','Z_{alpha}','\zeta','\omega'})
0 件のコメント
その他の回答 (1 件)
yashvin
2014 年 11 月 1 日
1 件のコメント
the cyclist
2014 年 11 月 1 日
What do you get for
get(gca,'TickLabelInterpreter')
Try
set(gca,'TickLabelInterpreter','tex')
参考
カテゴリ
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!