连接Matlab字符串

时间:2015-02-07 12:39:18

标签: matlab latex string-concatenation

我想制作一个Matlab函数,它接受两个矩阵A和B(大小相同)并以某种方式组合它们,以提供可在Latex - table中使用的输出。

我希望输出矩阵的第一行由矩阵A的第一行组成,它们之间有&符号(&),并以双反斜杠结束。

第二行应该是B的第一行,它们周围有括号,中间是&符号。等等A和B的其余部分。

如果我允许A=rand(1,2),我可以使用[num2str(A(1)), ' & ', num2str(A(2)),' \\']依此类推。

但我希望能够为矩阵A的任何大小创建一个函数。我想我必须以某种方式制作单元结构。但是如何?

2 个答案:

答案 0 :(得分:1)

您可以使用sprintf,它会根据需要重复格式规范,直到处理完所有输入变量:

%combine both to one matrix
C=nan(size(A).*[2,1]);
C(1:2:end)=A;
C(2:2:end)=B;
%print
sprintf('%f & %f \\\\\n',C.')

转置(.')是修复排序所必需的。

答案 1 :(得分:1)

这可能是一种方法 -

%// First off, make the "mixed" matrix of A and B
AB = zeros(size(A,1)*2,size(A,2));
AB(1:2:end) = A;
AB(2:2:end) = B;

%// Convert all numbers of AB to characters with ampersands separating them
AB_amp_backslash = num2str(AB,'%1d & ');

%// Remove the ending ampersands
AB_amp_backslash(:,end-1:end) = [];

%// Append the string ` \\` and make a cell array for the final output
ABcat_char = strcat(AB_amp_backslash,' \\');
ABcat_cell = cellstr(ABcat_char)

示例运行 -

A =
   183   163   116    50
   161    77   107    91
   150   124    56    46
B =
   161   108   198     4
   198    18    14   137
     6   161   188   157
ABcat_cell = 
    '183 & 163 & 116 &  50 \\'
    '161 & 108 & 198 &   4 \\'
    '161 &  77 & 107 &  91 \\'
    '198 &  18 &  14 & 137 \\'
    '150 & 124 &  56 &  46 \\'
    '  6 & 161 & 188 & 157 \\'