matlab GUI 函数调用,MATLAB gui函数调用问题

function chuli_Callback(hObject, eventdata, handles)

% hObject    handle to chuli (see GCBO)

% eventdata  reserved - to be defined in a future version of MATLAB

% handles    structure with handles and user data (see GUIDATA)

axes(handles.axes2);

cla reset;

global a;

if get(handles.zqfa,'Value')==1

[ph_out]=branch_cut(a);

end

if get(handles.zltf,'Value')==1                                                       第87行

msg=msgbox('请稍等,正在处理');

[ph_out]=QualityGuidedUnwrap2D(a);

close(msg);

end

if get(handles.zxecf,'Value')==1

msg=msgbox('请稍等,正在处理');

[ph_out]=WLP_unwarp(a);

close(msg);

end

if get(handles.zxfylf,'Value')==1

msg=msgbox('请稍等,正在处理');

[ph_out

你可能感兴趣的:(matlab,GUI,函数调用)