how to type angstrom in legend?
53 ビュー (過去 30 日間)
古いコメントを表示
how to type angstrom in legend?
something like legend('2A', '3A', '4A')
0 件のコメント
回答 (2 件)
Carlos Ortega
2018 年 3 月 23 日
Thanks! this is really an easy approach. I defined Ang as you suggested and then concatenated that variable in a label. Maybe someone would find helpful this example
Ang = char(197); xlabel(['Pore width (' Ang ')'])
0 件のコメント
Star Strider
2015 年 8 月 20 日
編集済み: Star Strider
2015 年 8 月 20 日
Probably the easiest way is to define it as:
Ang = char(197);
To produce a cell string for your legend, this works:
lgndstr = regexp(sprintf('%d%c ', [[1:3]', ones(3,1)*197]'), ' ', 'split');
legend(lgndstr(1:end-1))
producing:
'1Å' '2Å' '3Å'
The alternative is to use a LaTeX string and specify the 'latex' interpreter.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Legend についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!