How to select names from a matrix and put it in a table.
2 次查看(过去 30 天)
显示 更早的评论
Hi, I have a matrix full of names and I want to know how can I create a table that displays numerical values and also the names in the matrix.
0 个评论
采纳的回答
Image Analyst
2018-1-6
编辑:Image Analyst
2018-1-6
A table variable? Use the table() function.
A uitable spreadsheet control on your gui? Set the data property of your control to your cell array of strings.
handles.uitable1.Data = myCellArray;
0 个评论
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!