Removing and Adding Rows to UI Table in GUI

1 view (last 30 days)
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?

Accepted Answer

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

More Answers (0)

Categories

Find more on Data Types in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!