Removing and Adding Rows to UI Table in GUI

2 次查看(过去 30 天)
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?

采纳的回答

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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Data Types 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by