资源简介
电子测量大作业数据误差处理的代码分享,提供测试数据输入、粗大误差判别准则选择等的人机界面
代码片段和文件信息
function varargout = untitled1(varargin)
% UNtitleD1 MATLAB code for untitled1.fig
% UNtitleD1 by itself creates a new UNtitleD1 or raises the existing
% singleton*.
%
% H = UNtitleD1 returns the handle to a new UNtitleD1 or the handle to
% the existing singleton*.
%
% UNtitleD1(‘CALLBACK‘hobjecteventDatahandles...) calls the local
% function named CALLBACK in UNtitleD1.M with the given input arguments.
%
% UNtitleD1(‘Property‘‘Value‘...) creates a new UNtitleD1 or raises the
% existing singleton*. Starting from the left property value pairs are
% applied to the GUI before untitled1_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to untitled1_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 untitled1
% Last Modified by GUIDE v2.5 19-Dec-2018 21:25:51
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘ mfilename ...
‘gui_Singleton‘ gui_Singleton ...
‘gui_OpeningFcn‘ @untitled1_OpeningFcn ...
‘gui_OutputFcn‘ @untitled1_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 untitled1 is made visible.
function untitled1_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 untitled1 (see VARARGIN)
% Choose default command line output for untitled1
handles.output = hobject;
% Update handles structure
guidata(hobject handles);
% UIWAIT makes untitled1 wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = untitled1_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 pushbutton3.
function pushbutton3_Callback(hobject eventdata handles)
% hobject handle to pushbutton3 (see GCBO)
% eventdata reserved -
- 上一篇:lempel-ziv.m
- 下一篇:JPDA算法Matlab代码
相关资源
- JPDA算法Matlab代码
- matlab贝叶斯分类(2)-10折10次交叉验
- 基于MATLAB的音乐信号处理
- 灰色预测模型
- 地震动参数计算matlab程序
- 边值条件的微分方程求解
- matlab自动发邮件或短信的程序
- 量子遗传算法求函数最优值
- 时间序列arima matlab程序
- 求解多尺度熵可以用
- 红绿灯自动识别
- 和声搜索算法MATLAB代码
- Matlab程序_牛顿拉夫逊法&PQ;分解法计算
- 二维声子晶体平面波展开法计算能带
- 交直流程序
- MATLAB第四版课后部分程序
- DCT变换交互式原理与应用 matlab
- down_sample下采样
- matlab和HFSS联合仿真偶极子天线
- matlab和hfss联合仿真输出增益
- 西瓜数据集的C4.5算法的matlab实现
- 使用bp神经网络进行分布式光伏出力预
- 数字图像处理——图像的分割实验
- 自相关法基频计算matlab.rar
- 结构动力学使用中心差分法计算单自
- MATLAB实现利用形态学方法去噪腐蚀和
- MATLAB实现种子生长法进行图像分割
- PGSA主代码
- 小波变换可用例程
- 高斯-勒让德积分Gauss-legendre积分matl
评论
共有 条评论