|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
pushbutton1的回调函数如下,最后是产生一个很长地矩阵
function pushbutton1_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton1 (see GCBO)
% eventdata reserved - 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=[5000:1:6000];
qa=[16000:10:44000]';
plinear=interp2(q,n,p,qa,na);
在pushbutton2中想利用pushbutton1中最后产生的矩阵,该如何?
如:
plinear(56,29); |
|