symbols in axes titles in .fig
古いコメントを表示
How can I change the axes names with symbols in a .fig figure file without the .m file?
採用された回答
その他の回答 (1 件)
Geoff Hayes
2014 年 7 月 8 日
Adding text with symbols to an axes on the GUI is no different than when you create a figure through an m file.
For example, a simple GUI with one axes named (see the Tag property of the widget) axes1 can have its title, x- and y-axis labels set with symbols in the figure's yourFigureName_OpeningFcn method (where yourFigureName is the name of your figure/GUI).
Just add (to this method) something similar to the following
title(handles.axes1,'{\itAe}^{-\alpha\itt}sin\beta{\itt} \alpha<<\beta')
xlabel(handles.axes1,'Time \musec.')
ylabel(handles.axes1,'\epsilon+2\gamma')
A full list of supported symbols can be found in the String section of http://www.mathworks.com/help/matlab/ref/text_props.html.
カテゴリ
ヘルプ センター および File Exchange で Labels and Annotations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!