资源简介
MATLAB实现不同插值方法的GUI界面设计,学习matlab的一个例子
代码片段和文件信息
function varargout = chazhi_GUI(varargin)
% CHAZHI_GUI M-file for chazhi_GUI.fig
% CHAZHI_GUI by itself creates a new CHAZHI_GUI or raises the existing
% singleton*.
%
% H = CHAZHI_GUI returns the handle to a new CHAZHI_GUI or the handle to
% the existing singleton*.
%
% CHAZHI_GUI(‘CALLBACK‘hobjecteventDatahandles...) calls the local
% function named CALLBACK in CHAZHI_GUI.M with the given input arguments.
%
% CHAZHI_GUI(‘Property‘‘Value‘...) creates a new CHAZHI_GUI or raises the
% existing singleton*. Starting from the left property value pairs are
% applied to the GUI before chazhi_GUI_OpeningFunction gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to chazhi_GUI_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
% Copyright 2002-2003 The MathWorks Inc.
% Edit the above text to modify the response to help chazhi_GUI
% Last Modified by GUIDE v2.5 06-Feb-2014 11:48:42
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘ mfilename ...
‘gui_Singleton‘ gui_Singleton ...
‘gui_OpeningFcn‘ @chazhi_GUI_OpeningFcn ...
‘gui_OutputFcn‘ @chazhi_GUI_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 chazhi_GUI is made visible.
function chazhi_GUI_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 chazhi_GUI (see VARARGIN)
% Choose default command line output for chazhi_GUI
handles.output = hobject;
% Update handles structure
guidata(hobject handles);
% UIWAIT makes chazhi_GUI wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = chazhi_GUI_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;
function edit1_Callback(hobject
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-10-07 14:10 MATLAB实现不同插值方法的GUI界面设计\
文件 5967 2014-02-06 11:48 MATLAB实现不同插值方法的GUI界面设计\chazhi_GUI.fig
文件 7190 2018-10-07 14:08 MATLAB实现不同插值方法的GUI界面设计\chazhi_GUI.m
文件 26011 2018-10-07 14:10 MATLAB实现不同插值方法的GUI界面设计\linear插值界面及结果.fig
文件 168 2018-10-07 14:10 MATLAB实现不同插值方法的GUI界面设计\linear插值结果.txt
文件 26011 2018-10-07 14:10 MATLAB实现不同插值方法的GUI界面设计\pchip插值界面及结果.fig
文件 166 2018-10-07 14:10 MATLAB实现不同插值方法的GUI界面设计\pchip插值结果.txt
文件 25992 2018-10-07 14:10 MATLAB实现不同插值方法的GUI界面设计\spline插值界面及结果.fig
文件 167 2018-10-07 14:10 MATLAB实现不同插值方法的GUI界面设计\spline插值结果.txt
文件 100 2009-06-28 10:14 MATLAB实现不同插值方法的GUI界面设计\已知点.txt
文件 116 2009-06-28 10:23 MATLAB实现不同插值方法的GUI界面设计\未知点.txt
- 上一篇:GUI制作加好玩的matlab制作的小游戏
- 下一篇:matlab2011a_64
相关资源
- matlab2011a_64
- GUI制作加好玩的matlab制作的小游戏
- 平面框架内力计算
- 利用MATLAB提供的函数fskmod实现2FSK调制
- matlab实现sift提取特征点,SIFT算法的相
- 动力总成优化代码 (.m文件)
- 贝叶斯判别算法matlab的实现.m文件
- matlab产生通信连通图并输出邻接矩阵
- PGA for SAR的matlab仿真
- 图像压缩编码算法EZW算法的MATLAB代码
- romberg算法计算积分 matlab程序
- matlab利用复化梯形公式,复化simpson公
- 掌纹识别代码matlab
- SVM算法的MATLAB源程序
- HMM算法的语音识别的matlab程序
- 基于反正切函数的变步长LMS算法的M
- hausdorff matlab 实现
- MATLAB数字基带信号FSK调制与解调仿真
- MATLAB数字基带信号ASK调制与解调仿真
- MATLAB数字基带信号仿真
- 卷积码 编码 解码 基于Matlab 含PPT讲解
- matlab 快速排序和归并排序算法
- matlab FMCW雷达相位法测角修正
- prony谱线估计算法已修正
- MATLABR2008控制系统动态仿真教程_例题
- RSA加密及解密的MATLAB源程序
- matlab实现Romberg算法
- 基于matlab的红细胞提取
- matlab 采用BP实现Mnist数据集代码
- HVDC高压直流输电matlab仿真
评论
共有 条评论