matlab-GUI-设计(简易科学计算器)

上传人:公**** 文档编号:498172368 上传时间:2023-11-05 格式:DOCX 页数:23 大小:590.47KB
返回 下载 相关 举报
matlab-GUI-设计(简易科学计算器)_第1页
第1页 / 共23页
matlab-GUI-设计(简易科学计算器)_第2页
第2页 / 共23页
matlab-GUI-设计(简易科学计算器)_第3页
第3页 / 共23页
matlab-GUI-设计(简易科学计算器)_第4页
第4页 / 共23页
matlab-GUI-设计(简易科学计算器)_第5页
第5页 / 共23页
点击查看更多>>
资源描述

《matlab-GUI-设计(简易科学计算器)》由会员分享,可在线阅读,更多相关《matlab-GUI-设计(简易科学计算器)(23页珍藏版)》请在金锄头文库上搜索。

1、细心整理MATLAB大作业班级:姓名:学号:计算器 题目此题目通过MATLAB的gui程序设计较为简洁,在gui设计中主要用到三种控件,文本编辑框edit text,静态文本框Static text,叮嘱按钮push button。然后在通过各个按钮的回调函数,实现简洁的计算功能。 1、功能介绍(1)具有友好的用户图形界面。实现十进制数的加、减、乘、除、乘方、开方等简洁计算。(2)具有科学计算函数,包括(反)正弦、(反)余弦、(反)正切、(反)余切、开方、指数等函数运行。注:三角函数计算的是弧度而不是角度。(3)有去除键,能去除操作。 2、功能实现程序由两个局部组成:MATLAB代码.m文件和

2、GUI图形.fig。程序运用的流程:干脆利用图形界面中的按键键入所需数值、运算符等即可得出结果。备注:软件版本:MATLAB 2011b首先用MATLAB GUI功能,在绘制一个静态文本框和一个文本编辑框,以及33个叮嘱按钮,调整好各控件大小、颜色,整体布局如下图:附录中有相关属性修改介绍然后通过双击各个按钮来改写其属性,在m文件中编写其回调函数,最终在运行调试。2.1 各功能界面设计GUI设计界面:注:底部边框用Panel工具添加,有两种设计依次。1、先加底部边框,再在底部边框上画功能键。2、先画功能键,布好局,画底框,全选功能键拖动原委框上。2.2 各功能模块实现可依据须要增减功能键算法设

3、计:1. 数字键设计:09以及小数点函数都一样,只是参数不同:例如:按键1响应:global jjtextString = get(handles.text1,String);if(strcmp(textString,0.)=1)&(jj=0) set(handles.text1,String,1) ;elsetextString =strcat(textString,1);set(handles.text1,String,textString)endjj=0;2. 四那么运算函数:+功能响应:textString = get(handles.text1,String);textString

4、=strcat(textString,+);set(handles.text1,String,textString)-功能响应:textString = get(handles.text1,String);textString =strcat(textString,-);set(handles.text1,String,textString)功能响应:textString = get(handles.text1,String);textString =strcat(textString,*);set(handles.text1,String,textString)功能响应:textString

5、 = get(handles.text1,String);textString =strcat(textString,/);set(handles.text1,String,textString)3. 科学计算函数:例如:sin功能响应:textString = get(handles.text1,String);if(strcmp(textString,0.)=1)set(handles.text1,String,0.) ;elsea = strread(textString, %f);a=sin(a);set(handles.text1,String,a)end4. 退格键(DEL):通过

6、取屏幕值,计算出其字符长度,然后取其前N-1项的值来实现退格:global jjtextString = get(handles.text1,String);if(strcmp(textString,0.)=1)&(jj=0)set(handles.text1,String,0.) ;elsess=char(textString);l=length(textString);textString=ss(1:l-1);set(handles.text1,String,textString)endjj=0;5. 清屏键函数(AC):set(handles.text1,String,0.) ;2.3

7、各模块程序添加方法选中一个需添加程序的功能键,右击,View Callbacks,Callback,出现如下列图所示界面。红色框中为所需添加的程序其他功能键添加方法类似。2.4 各模块实现结果1数字键:2四那么运算函数:3科学计算函数:Cos0的计算结果:arctan2的计算结果:经过计算,这些结果均与实际结果相吻合,计算器的功能实现的较为完好。 3、程序总结:1小数点可以连续输入。解决方法是:用strfind函数查看文本框里有几个小数点,假如已经有一个了,再按小数点就保持不变。2按过运算符号后一个数不等于一个数,比方:输入1,按等号,会出来一个3,经过长时间分析得知,这是由于在按运算符号时,

8、系统记录了文本框里的数但没有清空,才会出现这种问题。解决方法是再申请一个不同于加减乘除的另一个符号,并将按过运算符后记录的数值置0。 4、心得体会:通过本次的MATLAB课程设计,让我对MATLAB尤其是其GUI设计的功能有了进一步的了解,相识到了它功能的强大。在MATLAB简洁计算器的设计中,了解了关于MATLAB图形用户界面的局部控件的运用方法;利用MATLAB的GUI供应的很多管用的控件,便利用于设计属于自己的图形界面和自己所须要实现的功能。 5、附录:(1) 功能块属性修改表双击功能块可进入2主要程序function varargout = untitled(varargin)%UNT

9、ITLED M-file for untitled.fig% UNTITLED, by itself, creates a new UNTITLED or raises the existing% singleton*.% H = UNTITLED returns the handle to a new UNTITLED or the handle to% the existing singleton*.% UNTITLED(Property,Value,.) creates a new UNTITLED using the% given property value pairs. Unrec

10、ognized properties are passed via% varargin to untitled_OpeningFcn. This calling syntax produces a% warning when there is an existing singleton*.% UNTITLED(CALLBACK) and UNTITLED(CALLBACK,hObject,.) call the% local function named CALLBACK in UNTITLED.M with the given input% arguments.% *See GUI Opti

11、ons on GUIDEs 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 untitled % Last Modified by GUIDE v2.5 19-Dec-2013 11:25:45 % Begin initialization code - DO NOT EDITgui_Singleton = 1;gui_Sta

12、te = struct(gui_Name, mfilename, . gui_Singleton, gui_Singleton, . gui_OpeningFcn, untitled_OpeningFcn, . gui_OutputFcn, untitled_OutputFcn, . gui_LayoutFcn, , . gui_Callback, );if nargin & ischar(varargin1) gui_State.gui_Callback = str2func(varargin1);end if nargout varargout1:nargout = gui_mainfcn

13、(gui_State, varargin:);else gui_mainfcn(gui_State, varargin:);end% End initialization code - DO NOT EDIT % - Executes just before untitled is made visible.function untitled_OpeningFcn(hObject, eventdata, handles, varargin)% This function has no output args, see OutputFcn.% hObject handle to figure%

14、eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)% varargin unrecognized PropertyName/PropertyValue pairs from the% command line (see VARARGIN) % Choose default command line output for untitledhandles.output = hObject; % Update handles structureguidata(hObject, handles); % UIWAIT makes untitled

展开阅读全文
相关资源
正为您匹配相似的精品文档
相关搜索

最新文档


当前位置:首页 > 办公文档 > 工作计划

电脑版 |金锄头文库版权所有
经营许可证:蜀ICP备13022795号 | 川公网安备 51140202000112号