matlab gui计算器代码,用gui设计计算器

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼

function number4_Callback(hObject, eventdata, handles)

% hObject handle to number4 (see GCBO)

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

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

global jj

textString = get(handles.text1,'String');

if(strcmp(textString,'0.')==1)&(jj==0)

set(handles.text1,'String','4') ;

else

textString =strcat(textString,'4');

set(handles.text1,'String',textString)

end

jj=0;

% --- Executes on button press in number5.

function number5_Callback(hObject, eventdata, handles)

% hObject handle to number5 (see GCBO)

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

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

global jj

textString = get(handles.text1,'String');

if(strcmp(textString,'0.')==1)&(jj==0)

set(handles.text1,'String','5') ;

else

textString =strcat(textString,'5');

set(handles.text1,'String',textString)

end

jj=0;

% --- Executes on button press in number6.

function number6_Callback(hObject, eventdata, handles)

% hObject handle to number6 (see GCBO)

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

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

global jj

textString = get(handles.text1,'String');

if(strcmp(textString,'0.')==1)&(jj==0)

set(handles.text1,'String','6') ;

else

textString =strcat(textString,'6');

set(handles.text1,'String',textString)

end

jj=0;

% --- Executes on button press in number7.

function number7_Callback(hObject, eventdata, handles)

% hObject handle to number7 (see GCBO)

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

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

global jj

textString = get(handles.text1,'String');

if(strcmp(textString,'0.')==1)&(jj==0)

set(handles.text1,'String','7') ;

else

textString =strcat(textString,'7');

set(handles.text1,'String',textString)

end

jj=0;

% --- Executes on button press in number8.

function number8_Callback(hObject, eventdata, handles)

% hObject handle to number8 (see GCBO)

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

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

global jj

textString = get(handles.text1,'String');

if(strcmp(textString,'0.')==1)&(jj==0)

set(handles.text1,'String','8') ;

else

textString =strcat(textString,'8');

set(handles.text1,'String',textString)

end

jj=0;

% --- Executes on button press in number9.

function number9_Callback(hObject, eventdata, handles)

% hObject handle to number9 (see GCBO)

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

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

global jj

textString = get(handles.text1,'String');

if(strcmp(textString,'0.')==1)&(jj==0)

set(handles.text1,'String','9') ;

else

textString =strcat(textString,'9');

set(handles.text1,'String',textString)

end

jj=0;

% --- Executes on button press in sin.


本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!

相关文章

立即
投稿

微信公众账号

微信扫一扫加关注

返回
顶部