ho to Send data from uitable to workspace?

3 次查看(过去 30 天)
How to send data from GUI uitable to workspace

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2013-3-28
You can use assignin
Read your data from your table then send it to workspace
data=get(gandles.uitable1,'Data')
assignin('base','data',Data)
  4 个评论
Arun Badigannavar
Arun Badigannavar 2013-3-28
By keyword'who',,,its coming thnks for ypur response
Arun Badigannavar
Arun Badigannavar 2013-3-28
How to update table data every time?I mean values for uitable wll come from workspace every one second ,,how to update it?

请先登录,再进行评论。

更多回答(2 个)

Jing
Jing 2013-3-28
How do you store the data in uitable? You can either save it to a mat file or make the variable global.

Suraj Srivastava
Suraj Srivastava 2015-2-18
I am facing the same issue....Kindly help it out...
Any help is really appreciated.
Thank you,
  1 个评论
imene. B
imene. B 2016-7-11
if true
% code
end
data=get(handles.uitable1,'data');
assignin('base','data',data)
data = cell2mat(data)
the result in a numerical data not a cell array

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Migrate GUIDE Apps 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by