How to create a table?
显示 更早的评论
I've read the Matlab tutorial for creating one, but it doesn't work for me. Do you need to make it as a script? Could you type a simple code for it to get me started?
采纳的回答
更多回答(2 个)
Azzi Abdelmalek
2013-10-12
f=figure
headers={'A','B','C'}
data=[1 2 3;4 5 6;7 8 9]
h = uitable(f,'Data',data, 'ColumnName',headers);
For more details
help uitable
ADRIANA FERREIRA
2018-9-27
0 个投票
t = table; t.a = [1 2 3 4 5]'; t.b = [1 1 1 1 1]'; t.sum = t.a +t.b; disp(t);
类别
在 帮助中心 和 File Exchange 中查找有关 Tables 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!