How do I create a table containing a character array if it has only one row?
20 次查看(过去 30 天)
显示 更早的评论
This works fine:
Time = [1;2];Force = [12;17];ID = ['ab';'cd'];
T = table(Time,Force,ID)
But this fails:
Time = [1];Force = [12];ID = ['ab'];
T = table(Time,Force,ID)
There may be a good reason for this, but the behaviour does not seem logical to me.
Does anyone have good workaround?
1 个评论
Stephen23
2022-3-4
"There may be a good reason for this"
Yes: single character vectors are presumed to be part of name-value arguments.
采纳的回答
Simon Chan
2022-3-4
Time = [1];Force = [12];ID = {'ab'};
T = table(Time,Force,ID)
Actually, the error message tells you the solution.
Time = [1];Force = [12];ID = ['ab'];
T = table(Time,Force,ID)
2 个评论
Csaba Zoltán Kertész
2022-3-13
You could also try to use strings instead of character vectors if you do not want to hassle with cells:
Time = [1]; Force = [12]; ID = ["ab"];
T = table(Time, Force, ID)
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!