• 大小: 5.15MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-09-17
  • 语言: Matlab
  • 标签: matlab  

资源简介

通过模拟音频受污染,开发出一套处理音频噪声的程序,从而使音频恢复

资源截图

代码片段和文件信息

function varargout = xiongbawuxia(varargin)
% XIONGBAWUXIA MATLAB code for xiongbawuxia.fig
%      XIONGBAWUXIA by itself creates a new XIONGBAWUXIA or raises the existing
%      singleton*.
%
%      H = XIONGBAWUXIA returns the handle to a new XIONGBAWUXIA or the handle to
%      the existing singleton*.
%
%      XIONGBAWUXIA(‘CALLBACK‘hobjecteventDatahandles...) calls the local
%      function named CALLBACK in XIONGBAWUXIA.M with the given input arguments.
%
%      XIONGBAWUXIA(‘Property‘‘Value‘...) creates a new XIONGBAWUXIA or raises the
%      existing singleton*.  Starting from the left property value pairs are
%      applied to the GUI before xiongbawuxia_OpeningFcn gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to xiongbawuxia_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 xiongbawuxia

% Last Modified by GUIDE v2.5 28-Oct-2016 21:08:47

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘       mfilename ...
                   ‘gui_Singleton‘  gui_Singleton ...
                   ‘gui_OpeningFcn‘ @xiongbawuxia_OpeningFcn ...
                   ‘gui_OutputFcn‘  @xiongbawuxia_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 xiongbawuxia is made visible.
function xiongbawuxia_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 xiongbawuxia (see VARARGIN)

% Choose default command line output for xiongbawuxia
handles.output = hobject;

% Update handles structure
guidata(hobject handles);

% UIWAIT makes xiongbawuxia wait for user response (see UIRESUME)
% uiwait(handles.figure1);


% --- Outputs from this function are returned to the command line.
function varargout = xiongbawuxia_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)
% h

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件      525819  2017-11-03 15:55  数字信号处理1\1.wma
     文件     5142572  2016-10-26 17:17  数字信号处理1\c.wav
     文件        9073  2016-11-08 23:29  数字信号处理1\xiongbawuxia.fig
     文件       10955  2017-11-03 16:10  数字信号处理1\xiongbawuxia.m

评论

共有 条评论