matlab guide how to show table with text

4 次查看(过去 30 天)
Hi i want to show this table like in the figure below in my matlab GUI application.

回答(1 个)

Ajay Kumar
Ajay Kumar 2019-11-12
Select Table from the component section adn write the callbacks accordingly to update the table.
ex.png
  1 个评论
polo Mahmoud
polo Mahmoud 2019-11-13
VarNames = {'Node', 'x', 'y', 'z', 'Rx', 'Ry', 'Rz'};
T_x = table((B_x(1,1:1:end))',x_global(1:6:end,1),x_global(2:6:end,1),x_global(3:6:end,1),x_global(4:6:end,1),x_global(5:6:end,1),x_global(6:6:end,1), 'VariableNames',VarNames)
data = get(hObject, 'T_x'):
disp(sum(data))
i have written this code but it does not work, the code is in the:
function uitable1_CellEditCallback(hObject, eventdata, handles)

请先登录,再进行评论。

类别

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