Removing and Adding Rows to UI Table in GUI

1 visualización (últimos 30 días)
Chris Dan
Chris Dan el 28 de Jul. de 2020
Respondida: Chris Dan el 28 de Jul. de 2020
Hello,
I am trying to add and remove on my table in the GUI by using the following code:
function AddBoundary_Callback(source,eventdata)
data = get(AssemblyTable5, 'data');
data(end+1,:)={0};
set(AssemblyTable5,'data',data)
end
% This function is not working
function RemoveBoundary_Callback(source,eventdata)
data = get(AssemblyTable5, 'data');
data(end+1,:)={[]};
set(AssemblyTable5,'data',data)
end
The code for adding the rows is working but the code for removing the rows is not
Does anyone know?

Respuesta aceptada

Chris Dan
Chris Dan el 28 de Jul. de 2020
I found this answer
function RemoveBoundary_Callback(source,eventdata)
data = get(AssemblyTable5, 'data');
data(end,:) = [];
set(AssemblyTable5,'data',data)
end

Más respuestas (0)

Categorías

Más información sobre Data Types en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by