shows table in gui panel
Ältere Kommentare anzeigen
Hi
I have made this code to show my table in gui, but the table just pops up and does not show in the gui application
handles.T = table((1:(size(nCoord,1)-1))',x_globalx(:,1),x_globay(:,1),x_globarz(:,1), 'VariableNames',VarNames)
fig = uifigure;
uit = uitable(fig, 'Data',handles.T);
set(handles.uitable1, 'Data', handles.T); ( this is the one i think i have made wrong )
4 Kommentare
Adam Danz
am 17 Feb. 2020
It looks like you're using a GUIDE GUI. Please confirm.
The line uit=uitable(...) creates the UI table but the UI table should already exist. So, remove that line.
The set(...) line should be sufficient if the handles are all correct.
polo Mahmoud
am 18 Feb. 2020
Adam Danz
am 18 Feb. 2020
"Yes I use GUI"
There are several ways to make a GUI in Matlab. I'm asking specificlly if you've used the guide() method. Based on your variable names, I think this is the case.
"...but it did not work"
I don't know what that means. Did you get an error message(if yes, please share the entire copy-pasted error message)? Did the table data no appear? Did something else happen unexpectedly?
polo Mahmoud
am 18 Feb. 2020
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Develop Apps Programmatically finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!