资源简介
信号与线性系统实验,用MATLAB实现编码译码过程&&&
代码片段和文件信息
function varargout = untitled(varargin)
%UNtitleD 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. Unrecognized 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 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 untitled
% Last Modified by GUIDE v2.5 06-Jul-2010 18:37:12
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘ mfilename ...
‘gui_Singleton‘ gui_Singleton ...
‘gui_OpeningFcn‘ @untitled_OpeningFcn ...
‘gui_OutputFcn‘ @untitled_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 untitled is made visible.
function untitled_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 unrecognized PropertyName/PropertyValue pairs from the
% command line (see VARARGIN)
% Choose default command line output for untitled
handles.output = hobject;
% Update handles structure
guidata(hobject handles);
% UIWAIT makes untitled wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = untitled_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 pushbutton1.
function pushbutton1_Callback(hobject eventdata handles)
% hobject handle to pushbutton1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with han
- 上一篇:自商图像SQI的MATLAB程序
- 下一篇:esprit算法
相关资源
- 自商图像SQI的MATLAB程序
- matlab程序实现了目标对象的图像分割
- Matlab-汽车动力性、经济性等_源程序
- 基于小波变换的零水印算法matlab
- 图片细胞分割 matlab
- 神经元 自适应 PID MATLAB
- 扩展有限元程序matlab
- 自动种子区域生长代码
- 图像处理中的模糊C均值聚类matlab算法
- OOK调制方法matlab代码ook.m
- NMF matlab
- matlab 图像下采样源码
- matlab 图像中值滤波,自己编写
- ICA的matlab程序
- PHD滤波的MATLAB实现
- Matlab GUI上位机编程中文参考手册
- 官方PSNR和SSIM---matlab实现
- 图像的区域生长分割matlab程序
- 黄金分割法优化算法在MAtlab中实现
- 模板匹配,使用matlab语言实现图像匹
- 基于matlab的小波图像融合(多种算法
- 最小二乘法作谱估计的MATLAB程序
- 语音编码Matlab代码及其论文
- DES程序的matlab实现代码
- pattern时延差编码常规解码
- 粒子群算法PSOmatlab工具箱toolbox
- 头脑风暴算法MATLAB版本
- 提取图像的颜色特征 matlab
- hsv颜色直方图matlab
- AP聚类算法的源代码
评论
共有 条评论