Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在用户选择值的数量后,我需要添加/删除 MATLAB 指南列表框中显示的数值。我还需要使用按下的按钮更新列表框值
在您的打开函数的某个地方,在 guidata(hObject, figure1) 行之前,您应该有一些变量来跟踪您的数字。声明类似的东西
handles.numbers = {};
一般来说,如果你有一个元胞数组 cell_array,你可以像这样设置列表框。在您的按钮的回调中,首先更新单元格数组,然后使用此行将其加载到您的列表框中
set(handles.tag_of_listbox, 'String', handles.numbers, 'Value', 1);