使用按钮在GUI中更新坐标列表(pointList)-Matlab

时间:2018-11-18 16:39:22

标签: matlab

我生成坐标(pointList),并根据它们使用以下代码得到点(在轴中移动):

pointList(1,:)=[]

[n m] = size(pointList);
for i = 1 : n
    h(i) = impoint(gca,pointList(i,1),pointList(i,2));
end

如何在GUI中使用按钮更新坐标列表(pointList)?

0 个答案:

没有答案