load specific data from mat file to GUI table
显示 更早的评论
Hello guys,
I want to ask: I need to load specific data from mat file. https://www.mathworks.com/matlabcentral/answers/uploaded_files/85707/image.png
For example a = DD6713MT, then I want to show just this data in the table, there is

How to do that? I don't have any reference code about this. The first column is the key. If a = first column, then show in the gui table is row of a.
ty
回答(1 个)
Image Analyst
2017-8-17
To show your cell array of strings and numbers in your table called uitable1, do this:
handles.uitable1.data = yourCellArray;
4 个评论
Yusran Said
2017-8-17
编辑:Image Analyst
2017-8-17
Image Analyst
2017-8-17
To get the data back out of the table, use get():
data = get(handles.uitable1, 'Data');
Yusran Said
2017-8-17
编辑:Yusran Said
2017-8-17
Yusran Said
2017-8-17
类别
在 帮助中心 和 File Exchange 中查找有关 Workspace Variables and MAT Files 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!