我想在Matlab的单独子图中添加模型的描述。通过读取可以具有不同长度的用户输入数据来形成描述,并且我希望它以列的形式对齐显示,例如:
玩家1 ____安德鲁______蓝色
玩家2 ____ Bob _________绿色
球员3 ____ Johnathan ___ red
(用空格代替' _')
我无法弄清楚如何做到这一点。 我尝试用' \ t',' char(9)';明确指定空格数;并尝试创建一个单元格数组 - 没有任何效果。任何想法为什么以及有其他方法这样做?非常感谢任何意见/建议,感谢您的时间!
clf
str1=[]; str2=[]; str3=[]; str4=[];
names={'Andrew', 'Bob', 'Johnathan'};
colorsorder={'blue', 'green', 'red'};
figure(1)
d1=subplot(2,2,1);
for i=1:3
newstr=['player ', num2str(i), '\t', char(names(i)), '\t', ...
'color= ', char(colorsorder(i)), ' \n'];
str1=strcat(str1, newstr);
end
y=ylim(d1);
t=text(0, y(2), sprintf(str1), 'Parent', d1);
set(t, 'FontSize', 15)
axis off
d2=subplot(2,2,2);
for i=1:3
newstr=['player ', num2str(i), char(9) , char(names(i)), char(9), ...
'color= ', char(colorsorder(i)), ' \n'];
str2=strcat(str2, newstr);
end
y=ylim(d2);
t=text(0, y(2), sprintf(str2), 'Parent', d2);
set(t, 'FontSize', 15)
axis off
d3=subplot(2,2,3);
tab=15;
for i=1:3
newstr=['player ', num2str(i), blanks(5), char(names(i)),...
blanks(tab-length(char(names(i)))),...
'color= ', char(colorsorder(i)), ' \n'];
str3=strcat(str3, newstr);
end
y=ylim(d3);
t=text(0, y(2), sprintf(str3), 'Parent', d3);
set(t, 'FontSize', 15)
axis off
d4=subplot(2,2,4);
dtable=cell(3, 3);
for i=1:3
dtable(i, 1)={['player ', num2str(i)]};
dtable(i, 2)={char(names(i))};
dtable(i, 3)={['color ',char(colorsorder(i))]};
str4=strcat(str4, strjoin(dtable(i,:), '\t'), '\n');
end
y=ylim(d4);
t=text(0, y(2), sprintf(str4), 'Parent', d4);
set(t, 'FontSize', 15)
axis off
答案 0 :(得分:1)
Matlab tex解释器有制表符(\ t)的问题。我会去乳胶翻译,并使用表格进行正确对齐。请看以下示例:
clf
str1=[]; str2=[]; str3=[]; str4=[];
names={'Andrew', 'Bob', 'Johnathan'};
colorsorder={'blue', 'green', 'red'};
figM = figure(1);
d1=subplot(2,2,1);
latexString = '$$\begin{tabular}{lll}';
for i=1:3
latexString = [latexString sprintf('player %s & %s & color= %s\\\\ ', num2str(i), names{i}, colorsorder{i})];
end
latexString = [latexString '\end{tabular}$$'];
axis off
text('String',latexString,...
'Interpreter','latex',...
'Position',[.5 .5],...
'FontSize',16)