我想生成一个表,但只想设置一个变量的变量名,但希望所有其他变量保留其名称。
例如,假设我有这些数据:
User1 = rand(5,1);
User2 = rand(5,1);
User3 = rand(5,2);
我现在可以使用以下方法制作表格:
table(User1 , User2 , User3(:,1))
这给了我这个:
ans =
User1 User2 Var3
________ ________ ________
0.55229 0.049533 0.14651
0.62988 0.48957 0.18907
0.031991 0.19251 0.042652
0.61471 0.12308 0.6352
0.36241 0.20549 0.28187
我想得到这个:
ans =
User1 User2 User3
________ ________ ________
0.55229 0.049533 0.14651
0.62988 0.48957 0.18907
0.031991 0.19251 0.042652
0.61471 0.12308 0.6352
0.36241 0.20549 0.28187
我试图这样做:
table(User1 , User2 , User3(:,1), 'VariableNames',{'','','User3'} )
但这会产生错误:
Error using setVarNames (line 33)
The VariableNames property must be a cell array, with each element containing one nonempty
string.
Error in table (line 305)
t = setVarNames(t,vnames); % error if invalid, duplicate, or empty
如何解决我的 MATLAB 2014b 问题?
对于我的数据,d
生成并循环制作表格,我想保留d
. 如果这在某种程度上很重要。