资源简介
matlab gui编写的音频处理系统,实现滤波,傅里叶变换,变调不变速,等操作
代码片段和文件信息
function varargout = fenxi(varargin)
% FENXI M-file for fenxi.fig
% FENXI by itself creates a new FENXI or raises the existing
% singleton*.
%
% H = FENXI returns the handle to a new FENXI or the handle to
% the existing singleton*.
%
% FENXI(‘CALLBACK‘hobjecteventDatahandles...) calls the local
% function named CALLBACK in FENXI.M with the given input arguments.
%
% FENXI(‘Property‘‘Value‘...) creates a new FENXI or raises the
% existing singleton*. Starting from the left property value pairs are
% applied to the GUI before fenxi_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to fenxi_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 fenxi
% Last Modified by GUIDE v2.5 18-Apr-2011 11:06:17
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘ mfilename ...
‘gui_Singleton‘ gui_Singleton ...
‘gui_OpeningFcn‘ @fenxi_OpeningFcn ...
‘gui_OutputFcn‘ @fenxi_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 fenxi is made visible.
function fenxi_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 fenxi (see VARARGIN)
% Choose default command line output for fenxi
handles.output = hobject;
% Update handles structure
guidata(hobject handles);
% UIWAIT makes fenxi wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = fenxi_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 luyin.
function luyin_Callback(hobject eventdata handles)
% hobject handle to luyin (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
if
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2011-04-19 11:23 声音处理-信科-岳英明-0909281074\
文件 12930 2011-04-18 13:23 声音处理-信科-岳英明-0909281074\fenxi.fig
文件 25251 2011-04-18 22:29 声音处理-信科-岳英明-0909281074\fenxi.m
- 上一篇:matlab 声音处理-男声变女声
- 下一篇:MATLAB gui 密码登陆程序代码
相关资源
- matlab巴特沃斯滤波器m代码
- 基于LMS和RLS的自适应滤波器的应用仿
- 很易懂的卡尔曼滤波器讲解,附带S
- 基于GPS_IMU组合定位的kalman滤波
- 指数低通滤波器对图像进行增强
- matlab图像各向异性滤波去噪
- 低通滤波.ms14
- EKF扩展卡尔曼滤波车身状态估计
- 《粒子滤波原理及应用-MATLAB仿真》程
- 自适应NLMS算法
- 基于matlab的线性锐化滤波图像增强并
- 数字滤波器的Matlab仿真设计
- 自适应滤波器
- 粒子滤波算法 matlab
- 简单的声音滤波 matlab
- 基于MATLAB的语音滤波实验设计
- 三维锥束CT反投影滤波重建matlab程序
- 自适应中值滤波算法matlab
-
simuli
nk实现信号双滤波重现 - 变步长的LMS自适应滤波算法matlab程序
- 改进的中值滤波MATLAB程序
- 窗函数法设计FIR数字滤波器Matlab程序
- Gabor滤波特征提取方法 matlab程序
- matlab程序之滤波器
- 4PSK和QPSK调制及成型滤波sinc
- 匹配滤波器原理及matlab实现
- FIR带通滤波器源代码
- matlab录音程序76107
- 小波滤波可用于心电信号、脉搏波信
- matlab编写的影像融合程序,包括Brov
评论
共有 条评论