图例名称有一些下划线" _"由于TEX转换,下标中的字符和下载变得奇怪。我尝试使用下面的代码禁用解释器,但仍然没有这样做。
% first try
gplotmatrix(x,[],group)
legend(gca,'Interpreter','none')
%second try
[~,ax,~]=gplotmatrix(x,[],group)
set(ax,'Interpreter','none')
答案 0 :(得分:1)
使用legend
找到findobj
句柄并设置属性:
hl = findobj(gcf,'Tag','legend')
set(hl,'Interpreter','none')
似乎在gplotmatrix
的任何输出中都没有返回父轴句柄。