ho to Send data from uitable to workspace?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Arun Badigannavar
il 28 Mar 2013
Commentato: imene. B
il 11 Lug 2016
How to send data from GUI uitable to workspace
0 Commenti
Risposta accettata
Azzi Abdelmalek
il 28 Mar 2013
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 Commenti
Più risposte (2)
Jing
il 28 Mar 2013
How do you store the data in uitable? You can either save it to a mat file or make the variable global.
Suraj Srivastava
il 18 Feb 2015
I am facing the same issue....Kindly help it out...
Any help is really appreciated.
Thank you,
1 Commento
imene. B
il 11 Lug 2016
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
Vedere anche
Categorie
Scopri di più su Develop Apps Using App Designer in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!