资源简介
matlab的GUI录音程序,界面很简单,用户可容易很方便的自己调整。
代码片段和文件信息
function varargout = luyin(varargin)
% LUYIN M-file for luyin.fig
% LUYIN by itself creates a new LUYIN or raises the existing
% singleton*.
%
% H = LUYIN returns the handle to a new LUYIN or the handle to
% the existing singleton*.
%
% LUYIN(‘CALLBACK‘hobjecteventDatahandles...) calls the local
% function named CALLBACK in LUYIN.M with the given input arguments.
%
% LUYIN(‘Property‘‘Value‘...) creates a new LUYIN or raises the
% existing singleton*. Starting from the left property value pairs are
% applied to the GUI before luyin_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to luyin_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 luyin
% Last Modified by GUIDE v2.5 20-Apr-2014 11:21:43
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘ mfilename ...
‘gui_Singleton‘ gui_Singleton ...
‘gui_OpeningFcn‘ @luyin_OpeningFcn ...
‘gui_OutputFcn‘ @luyin_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 luyin is made visible.
function luyin_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 luyin (see VARARGIN)
% Choose default command line output for luyin
handles.output = hobject;
% Update handles structure
guidata(hobject handles);
% UIWAIT makes luyin wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = luyin_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;
function edit1_Callback(hobject eventdata handles)
% hobject handle to edit1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hints: get(hobject‘String‘) returns co
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 4651 2014-04-20 11:42 luyin.asv
文件 2741 2014-04-20 11:27 luyin.fig
文件 4664 2014-04-20 11:46 luyin.m
相关资源
- 该源代码的功能是用matlab来实现链码
- 非常经典的MATLAB人脸识别程序可显示
- 1.5维普matlab程序
-
OQPSK的Matlab_Simuli
nk调制解调仿真系统 - Matlab 2018b 破解文件
- 降低OFDM系统PAPR算法(PTS-SLM-C变换)
- Classification matlab code - Quadratic Discrim
- 数字下变频MATLAB仿真
- UWB matlab程序
- 超分辨的MATLAB程序
- 图像相似度量Matlab代码
- 数字信号处理理论算法与实现课后习
- haar人脸 人眼检测 MATLAB
- s变换的matlab程序
- 应用Matlab产生各种数字调制信号以及
- 基于MATLAB的线性二次型最优控制设计
- KPCA故障诊断matlab实现182088
- 求两幅图像间的-相关系数-matlab-M文件
- matlab中宽带信号的产生
- 基于matlab的车型识别源代码
- matlab 检查数据的周期函数
- matlab仿真.rar
- GMM模型,用MATlab编写的。可以用来训
- matlabR2016b.zip
- MUSIC空间谱估计算法matlab实现
- 李雅普诺夫指数wolf算法
- matlab2017a 中文版安装破解文件
- CVX工具箱使用说明
- 计算齿轮齿数的MATLAB程序
- S型加减速曲线算法----matlab
评论
共有 条评论