两个PUSHBUTTON数据传递问题
pushbutton1的回调函数如下,最后是产生一个很长地矩阵function pushbutton1_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton1 (see GCBO)
% eventdatareserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
n=5000:500:6000;
q=16000:4000:44000;
p=[ ....8*3的数据 在此暂且略去];
na=;
qa=';
plinear=interp2(q,n,p,qa,na);
在pushbutton2中想利用pushbutton1中最后产生的矩阵,该如何?
如:
plinear(56,29); 解决了 用全局变量
在pushbutton1的回调函数最后加上
data = guidata(gcbo); %获得全局数据
data.x = plinear; %将plinear的值放到data.x里
guidata(gcbo,data); %把它放回全局数据里
在在pushbutton2的回调函数中加上
data = guidata(gcbo); %获得全局数据
plinear=data.x;
页:
[1]