如何在Matlab图中添加希腊字母到数据光标?

时间:2011-11-14 08:28:55

标签: matlab symbols figure

我在Matlab图中添加了一个数据光标,这就是我单击“编辑文本更新功能...”时显示的代码。

function output_txt = myfunction(obj,event_obj)
% Display the position of the data cursor
% obj          Currently not used (empty)
% event_obj    Handle to event object
% output_txt   Data cursor text string (string or cell array of strings).

pos = get(event_obj,'Position');
output_txt = {['X: ',num2str(pos(1),4)],...
    ['Y: ',num2str(pos(2),4)]};
% If there is a Z-coordinate in the position, display it as well
if length(pos) > 2
    output_txt{end+1} = ['Z: ',num2str(pos(3),4)];
end

我想要做的是用'alpha'或'beta'等希腊字符替换字符'X','Y'。我怎么能这样做?

谢谢!

1 个答案:

答案 0 :(得分:2)

\ alpha(以及一些LaTeX符号)在标题中起作用,也可能在这种情况下起作用。 注意:\ Alpha是首都希腊字母,\ alpha是小字母。

请参阅此table

编辑:另请参阅Amro注释以激活(La)TeX解释器。