我有一个没有 GUIDE 的 GUI,只是普通的旧 uicontrols,到目前为止我已经让一切正常工作。但是我想,在按下按钮后,在文本框(编辑)中获取值并将其存储到变量 fi 中。
基本上是有问题的代码;
c2 = uicontrol(f,'Style', 'pushbutton','String','Rotation','Callback',
@rotation);
s1 = uicontrol(f,'Style', 'edit');
function rotation(src,event)
load 'BatMan.mat' X
fi = %This is the value I want to have the value as the edit box.
subplot(2,2,1)
PlotFigure(X)
end