亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? guical.m

?? 這學期開了軟件工程工具及其應用這么課
?? M
?? 第 1 頁 / 共 2 頁
字號:
function varargout = guical(varargin)
% GUICAL M-file for guical.fig
%      GUICAL, by itself, creates a new GUICAL or raises the existing
%      singleton*.
%
%      H = GUICAL returns the handle to a new GUICAL or the handle to
%      the existing singleton*.
%
%      GUICAL('CALLBACK',hObject,eventData,handles,...) calls the local
%      function named CALLBACK in GUICAL.M with the given input arguments.
%
%      GUICAL('Property','Value',...) creates a new GUICAL or raises the
%      existing singleton*.  Starting from the left, property value pairs are
%      applied to the GUI before guical_OpeningFunction gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to guical_OpeningFcn via varargin.
%
%      *See GUI Options on GUIDE's Tools menu.  Choose "GUI allows only one
%      instance to run (singleton)".
%
% See also: GUIDE, GUIDATA, GUIHANDLES

% Edit the above text to modify the response to help guical

% Last Modified by GUIDE v2.5 13-Aug-2006 20:05:08

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name',       mfilename, ...
                   'gui_Singleton',  gui_Singleton, ...
                   'gui_OpeningFcn', @guical_OpeningFcn, ...
                   'gui_OutputFcn',  @guical_OutputFcn, ...
                   'gui_LayoutFcn',  [] , ...
                   'gui_Callback',   []);
if nargin && ischar(varargin{1})
    gui_State.gui_Callback = str2func(varargin{1});
end

if nargout
    [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
else
    gui_mainfcn(gui_State, varargin{:});
end
% End initialization code - DO NOT EDIT


% --- Executes just before guical is made visible.
function guical_OpeningFcn(hObject, eventdata, handles, varargin)
% This function has no output args, see OutputFcn.
% hObject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
% varargin   command line arguments to guical (see VARARGIN)

% Choose default command line output for guical
handles.output = hObject;

% Update handles structure
guidata(hObject, handles);

% UIWAIT makes guical wait for user response (see UIRESUME)
% uiwait(handles.figure1);


% --- Outputs from this function are returned to the command line.
function varargout = guical_OutputFcn(hObject, eventdata, handles) 
% varargout  cell array for returning output args (see VARARGOUT);
% hObject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Get default command line output from handles structure
varargout{1} = handles.output;


% --- Executes on button press in num7.
function num7_Callback(hObject, eventdata, handles)
u=get(findobj(gcf,'tag','result'),'string');
v=strcat(u,int2str(7));
set(handles.result,'String',v);
% hObject    handle to num7 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in num8.
function num8_Callback(hObject, eventdata, handles)
u=get(handles.result,'string');
v=strcat(u,'8');
set(handles.result,'String',v);
% hObject    handle to num8 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in num9.
function num9_Callback(hObject, eventdata, handles)
u=get(handles.result,'string');
v=strcat(u,'9');
set(handles.result,'String',v);
% hObject    handle to num9 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in num4.
function num4_Callback(hObject, eventdata, handles)
u=get(handles.result,'string');
v=strcat(u,'4');
set(handles.result,'String',v);
% hObject    handle to num4 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in num5.
function num5_Callback(hObject, eventdata, handles)
u=get(handles.result,'string');
v=strcat(u,'5');
set(handles.result,'String',v);
% hObject    handle to num5 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in num6.
function num6_Callback(hObject, eventdata, handles)
u=get(handles.result,'string');
v=strcat(u,'6');
set(handles.result,'String',v);
% hObject    handle to num6 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in num1.
function num1_Callback(hObject, eventdata, handles)
u=get(handles.result,'string');
v=strcat(u,'1');
set(handles.result,'String',v);
% hObject    handle to num1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in num2.
function num2_Callback(hObject, eventdata, handles)
u=get(handles.result,'string');
v=strcat(u,'2');
set(handles.result,'String',v);
% hObject    handle to num2 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in num3.
function num3_Callback(hObject, eventdata, handles)
u=get(handles.result,'string');
v=strcat(u,'3');
set(handles.result,'String',v);
% hObject    handle to num3 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in num0.
function num0_Callback(hObject, eventdata, handles)
u=get(handles.result,'string');
v=strcat(u,'0');
set(handles.result,'String',v);
% hObject    handle to num0 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in prefix.
function prefix_Callback(hObject, eventdata, handles)
v1=get(handles.result,'string');
if strncmp(v1,'-',1)==1
    v=strrep(v1,'-','');
else
    v=strcat('-',v1);
end
set(handles.result,'string',v);
% hObject    handle to prefix (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in dot.
function dot_Callback(hObject, eventdata, handles)
v1=get(findobj(gcf,'tag','result'),'string');
v=strcat(v1,'.');
set(handles.result,'string',v);
% hObject    handle to dot (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in divi.
function divi_Callback(hObject, eventdata, handles)
u=get(handles.result,'string');
v=strcat(u,'/');
set(handles.result,'String',v);
% hObject    handle to divi (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in multi.
function multi_Callback(hObject, eventdata, handles)
u=get(handles.result,'string');
v=strcat(u,'*');
set(handles.result,'String',v);
% hObject    handle to multi (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in minus.
function minus_Callback(hObject, eventdata, handles)
u=get(handles.result,'string');
v=strcat(u,'-');
set(handles.result,'String',v);
% hObject    handle to minus (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in plus.
function plus_Callback(hObject, eventdata, handles)
u=get(handles.result,'string');
v=strcat(u,'+');
set(handles.result,'String',v);
% hObject    handle to plus (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in sqrt.
function sqrt_Callback(hObject, eventdata, handles)
v1=get(handles.result,'String');
v=sqrt(eval(get(handles.result,'String')));
set(handles.result,'String',v);
v2=num2str(v);
v3=strcat(v1,'(','sqrt',')','=',v2);
set(handles.progress,'string',v3)
% hObject    handle to sqrt (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in percent.
function percent_Callback(hObject, eventdata, handles)
v1=get(handles.result,'String');
v=(eval(v1))/100.00;
set(handles.result,'String',v);
v=num2str(v);
v2=strcat(v1,'%','=',v);
set(handles.progress,'string',v2);
% hObject    handle to percent (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in pushbutton19.
function pushbutton19_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton19 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in equal.
function equal_Callback(hObject, eventdata, handles)
v1=get(handles.result,'String');
v2=eval(v1);v=num2str(v2);
v=strcat(v1,'=',v);
set(handles.result,'String',v2);
set(handles.progress,'string',v);
% hObject    handle to equal (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in pushbutton21.
function pushbutton21_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton21 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in pushbutton22.
function pushbutton22_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton22 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in pushbutton23.
function pushbutton23_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton23 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in mplus.
function mplus_Callback(hObject, eventdata, handles)
% hObject    handle to mplus (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in c.
function c_Callback(hObject, eventdata, handles)
% v1=get(handles.result,'string');
% v2=get(handles.progress,'string');
set(handles.result,'string','');
% set(handles.progress,'string','');
% hObject    handle to c (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in backspace.
function backspace_Callback(hObject, eventdata, handles)
u=get(handles.result,'string');
if isempty(u);
    ;
else u(end)=[];
    v=u;set(handles.result,'String',v);
end;
% hObject    handle to backspace (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in pushbutton27.
function pushbutton27_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton27 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in pushbutton28.
function pushbutton28_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton28 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in pushbutton29.
function pushbutton29_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton29 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in pushbutton30.
function pushbutton30_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton30 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

 

function clock_Callback(hObject, eventdata, handles)
% k=1;
% while k==1;
% a=datestr(now);
% set(gcbo,'string',a);
% pause(1);
% end
% hObject    handle to clock (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Hints: get(hObject,'String') returns contents of clock as text
%        str2double(get(hObject,'String')) returns contents of clock as a double

% --- Executes during object creation, after setting all properties.

function clock_CreateFcn(hObject, eventdata, handles)
% k=1;
% while k==1;
% a=datestr(now);
% set(findobj(gcf,'tag','clock'),'string',a);
% pause(1);
% end
% hObject    handle to clock (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called


% Hint: edit controls usually have a white background on Windows.
%       See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
    set(hObject,'BackgroundColor','white');
end

 

function edit2_Callback(hObject, eventdata, handles)
% hObject    handle to edit2 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Hints: get(hObject,'String') returns contents of edit2 as text
%        str2double(get(hObject,'String')) returns contents of edit2 as a double

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人综合在线观看| 视频在线在亚洲| 欧美久久久久久久久中文字幕| 日韩av一级片| 最新热久久免费视频| 日韩三级精品电影久久久| 色嗨嗨av一区二区三区| 国内精品在线播放| 日韩vs国产vs欧美| 欧美高清在线一区二区| 91麻豆精品国产综合久久久久久| 床上的激情91.| 免费成人av在线播放| 亚洲动漫第一页| 亚洲高清在线精品| 夜夜精品视频一区二区| 国产精品女同一区二区三区| 国产日韩综合av| 久久亚洲一区二区三区明星换脸 | 成人的网站免费观看| 午夜国产不卡在线观看视频| 亚洲伦理在线免费看| 国产精品久久久久久亚洲毛片 | 91视频免费播放| 色综合久久久久久久久久久| 99精品黄色片免费大全| 成+人+亚洲+综合天堂| 国产米奇在线777精品观看| 国内一区二区在线| 国产91高潮流白浆在线麻豆 | 亚洲国产综合色| 亚洲一本大道在线| 精品在线免费视频| 国产真实乱偷精品视频免| 国产精品一区二区在线看| 国产99精品国产| 99国产精品视频免费观看| 在线观看日韩av先锋影音电影院| 99久久久精品| 欧美视频一区二区在线观看| 欧美熟乱第一页| 欧美一区二区三区免费大片| 久久伊人中文字幕| 国产清纯美女被跳蛋高潮一区二区久久w | 狠狠久久亚洲欧美| 成人sese在线| 日韩美女视频一区二区在线观看| 国产欧美精品一区| 亚洲小说欧美激情另类| 精品一区二区三区影院在线午夜 | 亚洲国产成人av| 激情六月婷婷综合| 在线不卡一区二区| 中文字幕一区不卡| 奇米一区二区三区| 91天堂素人约啪| 欧美日韩一二三| 亚洲人成网站在线| 日日夜夜精品视频免费 | 青青国产91久久久久久| 91视频.com| 国产欧美精品一区二区色综合 | 国产999精品久久久久久绿帽| 在线免费不卡电影| 久久综合色一综合色88| 午夜精品久久久久久久99水蜜桃 | 午夜成人在线视频| 日本电影欧美片| 亚洲在线免费播放| 欧美性色欧美a在线播放| 国产精品久久久一区麻豆最新章节| 国产一区二区h| www国产成人免费观看视频 深夜成人网| 亚洲一区二区三区影院| 欧美理论片在线| 久久国产欧美日韩精品| 精品久久国产老人久久综合| 国产一区二区福利视频| 国产亚洲视频系列| 国产一区二区免费视频| 亚洲欧美日韩电影| 精品久久人人做人人爰| 国产精品久久久久久久第一福利| 久久午夜电影网| 国模无码大尺度一区二区三区| 在线观看免费亚洲| 亚洲国产成人高清精品| 制服丝袜亚洲精品中文字幕| 日韩国产精品久久| 日韩精品一区二区三区swag| 美国欧美日韩国产在线播放| 久久婷婷久久一区二区三区| 国产成人8x视频一区二区| 中文字幕久久午夜不卡| 在线区一区二视频| 国产在线播放一区| 自拍偷拍欧美激情| 日韩欧美视频一区| 91一区二区在线观看| 麻豆极品一区二区三区| 国产精品视频一区二区三区不卡| 在线观看国产精品网站| 久久国产精品无码网站| 亚洲h精品动漫在线观看| 9191成人精品久久| 99re成人精品视频| 国产精品99久| 日韩av二区在线播放| 亚洲色欲色欲www| 久久香蕉国产线看观看99| 欧美色国产精品| 91尤物视频在线观看| 国产高清成人在线| 韩国女主播成人在线| 日韩高清不卡一区二区三区| 亚洲精品日韩一| 亚洲人精品一区| 国产日韩三级在线| 久久久久久99精品| 26uuu精品一区二区三区四区在线| 欧美性受xxxx| 欧美午夜免费电影| 欧美成人精品3d动漫h| 日韩午夜在线观看| 国产亚洲欧美中文| 天天色综合成人网| 成人白浆超碰人人人人| 欧美一区中文字幕| 国产精品无遮挡| 一区二区成人在线视频| 激情综合色播五月| 欧美日本不卡视频| 91精品国产乱码久久蜜臀| 欧美无乱码久久久免费午夜一区| 欧美无乱码久久久免费午夜一区 | 国产麻豆精品久久一二三| 国产剧情一区在线| 91在线免费看| 欧美一区二区三区色| 久久综合色鬼综合色| 亚洲精品乱码久久久久久黑人 | 美女国产一区二区| 成人晚上爱看视频| 91精品黄色片免费大全| 国产性做久久久久久| 一区二区三区四区不卡在线 | 欧美在线视频不卡| 这里只有精品99re| 国产精品网站一区| 日韩av在线免费观看不卡| 国产高清不卡二三区| 欧美一区二区不卡视频| 国产精品久久久久久亚洲伦| 亚洲蜜臀av乱码久久精品| 亚洲欧洲国产专区| 精品粉嫩超白一线天av| 国产三级精品视频| 久久午夜电影网| 久久久精品蜜桃| 久久久久成人黄色影片| 久久久精品国产免大香伊| 一区二区三区在线免费观看| 老鸭窝一区二区久久精品| eeuss国产一区二区三区| 精品国产免费一区二区三区四区 | 91亚洲精华国产精华精华液| 日韩天堂在线观看| 亚洲主播在线观看| a级精品国产片在线观看| 精品成人免费观看| 美女一区二区三区| 91精品国产综合久久香蕉的特点 | 久久久99精品免费观看| 国产一区在线精品| 精品国产凹凸成av人导航| 日韩综合在线视频| 欧美性大战久久久| 亚洲一二三级电影| 欧美日韩免费在线视频| 亚洲大片免费看| 欧美精品少妇一区二区三区| 亚洲国产成人91porn| 欧美人牲a欧美精品| 三级欧美在线一区| 精品久久一二三区| 国产成人综合自拍| 国产精品久线观看视频| 91色porny蝌蚪| 亚洲小少妇裸体bbw| 欧美精品久久天天躁| 麻豆精品在线播放| 亚洲国产成人午夜在线一区| 成人免费高清视频| 亚洲成人你懂的| 久久婷婷久久一区二区三区| 国产91在线|亚洲| 婷婷中文字幕一区三区| 久久精品欧美日韩精品| 91黄视频在线观看| 奇米影视一区二区三区小说|