资源简介
通信工程 专业课数字信号处理 课程设计项目 基于matlabGUI的语音信号的处理
代码片段和文件信息
function varargout = gui2(varargin)
% GUI2 MATLAB code for gui2.fig
% GUI2 by itself creates a new GUI2 or raises the existing
% singleton*.
%
% H = GUI2 returns the handle to a new GUI2 or the handle to
% the existing singleton*.
%
% GUI2(‘CALLBACK‘hobjecteventDatahandles...) calls the local
% function named CALLBACK in GUI2.M with the given input arguments.
%
% GUI2(‘Property‘‘Value‘...) creates a new GUI2 or raises the
% existing singleton*. Starting from the left property value pairs are
% applied to the GUI before gui2_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to gui2_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 gui2
% Last Modified by GUIDE v2.5 18-Oct-2013 23:54:28
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘ mfilename ...
‘gui_Singleton‘ gui_Singleton ...
‘gui_OpeningFcn‘ @gui2_OpeningFcn ...
‘gui_OutputFcn‘ @gui2_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 gui2 is made visible.
function gui2_OpeningFcn(hobject ~ 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 gui2 (see VARARGIN)
% Choose default command line output for gui2
handles.output = hobject;
%handles.fselect=22050;
%handles.tselect=20;
% process handles structure
guidata(hobject handles);
% UIWAIT makes gui2 wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = gui2_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)
%set(handles.fselect‘userdata‘22050);
%set(handles.tselect‘userdata‘20);
% Get default command line output from handles structure
varargout{1} = handles.output;
%function for play control
%function [player]=playFile(myfilehandleseventdatahobject)
%load(myfile);
% [dataFsnBits]=wavread(myfile) ;%获取音乐数据
%data=get(handles.
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 37565 2013-10-19 09:10 test\gui4.fig
文件 40818 2013-10-19 09:42 test\gui4.m
文件 882044 2013-10-19 09:28 test\record.wav
目录 0 2013-11-23 21:52 test
----------- --------- ---------- ----- ----
960427 4
相关资源
- BP神经网络时间序列预测matlab代码ma
- 关于四元数法捷联惯导解算算法的m
- matlab均衡器67280
- matlab快速傅里叶变换进行数字图像处
- 电池储能仿真
- matlab实现水平集方法
- matlab 圆形识别并标注
- 车牌字符分割垂直投影切分matlab程序
- LFM及匹配滤波的MATLAB程序
- 多光谱图像融合 matlab.zip
- matlab中仿真自适应信号处理LMSNewton算
- matlab中仿真自适应信号处理LMS算法
- 四步相移法程序
- 基于区域生长的MATLAB实现
- matlab 遗传算法优化BP神经网络程序
- 点云滤波算法 一维双向扫描方法 ma
- matlab游程编码的实现
- 一个搞定Matlab gui编程
- matlab使用混沌序列进行图像加密
- 室内可见光通信光照分布MATLAB代码
- HBV模型matlab源代码
- 手指静脉识别技术 余文波 第九章ma
- MATLAB图像腐蚀和膨胀
- Parafac 有关matlab代码
- C/A产生matlab程序
- matlab连通区域的提取
- 基于MATLAB的车牌识别系统设计
- 卡尔曼滤波课程8次matlab仿真作业
- 认知无线电频谱感知中能量检测方法
- INS/GPS组合导航MATLAB处理库
评论
共有 条评论