概述
以下参考Matlab-help-matlab-Gui Building
一、启动:
1.用guide命令
2.file->new->gui
default是blank gui,
当保存时会创建两个文件.fig和.m
运行打开可以直接在命框输入文件名
文件的编辑打开:
guide simple_gui.figedit simple_gui.m
二、显示组件名称
Select File > Preferences > GUIDE.
Select Show names in component palette.
Click OK. 三、可以添加各种组件,对其组件
Select all three push buttons by pressing Ctrl and clicking them.
Select Tools > Align Objects 然后根据需要进行选择
四、修改组件名称
1.选中组件,右键组件,选择Property Inspector.
2.修改String里的内容(如下拉菜单,可以回车写很多名字)
五、生成数据到Plot
在.m文件中(View>Editor.in theNAVIGATEsection, clickGo To, and then select 文件名.)_OpeningFcn
function 文件名_OpeningFcn(hObject, eventdata, handles, varargin)后添加
通过“handles.组件名字=?”给各组件赋值,
handles.current_data = handles.组件名字;%%%初始化选择哪个组件的值
surf(handles.current_data)&&绘图显示 六、添加组件功能
在.m文件中
function 组件原始名_Callback(hObject, eventdata, handles)
后进行编辑组件动作
最后
以上就是优秀流沙为你收集整理的matlab gui创建,Matlab创建GUI的全部内容,希望文章能够帮你解决matlab gui创建,Matlab创建GUI所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复