matlab guide how to show table with text

4 visualizaciones (últimos 30 días)
polo Mahmoud
polo Mahmoud el 12 de Nov. de 2019
Comentada: polo Mahmoud el 13 de Nov. de 2019
Hi i want to show this table like in the figure below in my matlab GUI application.

Respuestas (1)

Ajay Kumar
Ajay Kumar el 12 de Nov. de 2019
Select Table from the component section adn write the callbacks accordingly to update the table.
ex.png
  1 comentario
polo Mahmoud
polo Mahmoud el 13 de Nov. de 2019
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)

Iniciar sesión para comentar.

Categorías

Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by