如何为gplotmatrix的传奇设置解释器为'none'?

时间:2014-12-10 05:58:44

标签: matlab

图例名称有一些下划线" _"由于TEX转换,下标中的字符和下载变得奇怪。我尝试使用下面的代码禁用解释器,但仍然没有这样做。

% first try 
gplotmatrix(x,[],group)
legend(gca,'Interpreter','none')

%second try
[~,ax,~]=gplotmatrix(x,[],group)
set(ax,'Interpreter','none')

1 个答案:

答案 0 :(得分:1)

使用legend找到findobj句柄并设置属性:

hl = findobj(gcf,'Tag','legend')
set(hl,'Interpreter','none')

似乎在gplotmatrix的任何输出中都没有返回父轴句柄。