我有一个弹出菜单,其中包含 5,10,15,20 的内容。使用开关我创建了这个
val=get(hobject,'value');
switch val
case '5'
n=5;
case '10'
n=10;
case '15'
n=15;
case '20'
n=20;
end
guidata(hObject, handles);
其中它表示输出图像的数量。在同一个 GUI 窗口中按下搜索按钮时,它会调用另一个我需要使用此“n”的函数。
for i = 1:n % Store top n matches...
tempstr = char(resultNames(index(i)));
fprintf(fid, '%s\r', tempstr);
disp(resultNames(index(i)));
disp(sortedValues(i));
disp(' ')
end
我怎样才能将这个'n'传递给那个代码或函数?任何适当的答案都是可观的。