资源简介
能显示波形和频谱,自己做的,供学习交流用
代码片段和文件信息
function varargout = hdm_player(varargin)
% HDM_Player MATLAB code for hdm_player.fig
% HDM_Player by itself creates a new HDM_Player or raises the existing
% singleton*.
%
% H = HDM_Player returns the handle to a new HDM_Player or the handle to
% the existing singleton*.
%
% HDM_Player(‘CALLBACK‘hobjecteventDatahandles...) calls the local
% function named CALLBACK in HDM_Player.M with the given input arguments.
%
% HDM_Player(‘Property‘‘Value‘...) creates a new HDM_Player or raises the
% existing singleton*. Starting from the left property value pairs are
% applied to the GUI before hdm_player_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to hdm_player_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 hdm_player
% Last Modified by GUIDE v2.5 07-Mar-2012 13:47:06
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘ mfilename ...
‘gui_Singleton‘ gui_Singleton ...
‘gui_OpeningFcn‘ @hdm_player_OpeningFcn ...
‘gui_OutputFcn‘ @hdm_player_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 hdm_player is made visible.
function hdm_player_OpeningFcn(hobject eventdata handles varargin)
global T_obj which_channel T_start x;
which_channel = 1;
T_start = 0;
x = 0;
% 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 hdm_player (see VARARGIN)
T_obj=timer(‘TimerFcn‘{@plotupdate handles} ‘Period‘ 0.1 ‘ExecutionMode‘ ‘FixedRate‘);
% Choose default command line output for hdm_player
handles.output = hobject;
% Update handles structure
guidata(hobject handles);
% UIWAIT makes hdm_player wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = hdm_player_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} = h
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3929710 2012-03-05 18:48 hdm_pla
文件 9804 2012-03-07 19:36 hdm_pla
文件 10533 2012-03-07 22:43 hdm_pla
目录 0 2012-03-09 16:40 hdm_pla
----------- --------- ---------- ----- ----
3950047 4
- 上一篇:SIFT特征匹配 MATLAB 实现
- 下一篇:数字图像处理常用测试图片part6
相关资源
- SIFT特征匹配 MATLAB 实现
- 图像分块BCS稀疏表示与重建
- K均值聚类算法,图像处理,GUI,mat
- MATLAB在卡尔曼滤波器中应用的理论与
- 智能控制及matlab仿真实验知道
- 经典SVM算法的MATLAB程序
- FASTICA盲源信号分离代码Matlab
-
simuli
nk和pspice的接口程序 - 《全面详解LTE:MATLAB建模、仿真与实
- KPCA matlab实现
- matlab实现视频动态物体检测与追踪
- 基于变分水平集的图像分割
- stk-matlab connectors 1.0.4
- Marine Systems Simulator(gnc)
- matlab和ansys振动仿真
- Qt 5.9 与 matlab 2017b 混合编程基本流程
- 802.11n信道模型
- cordic算法的matlab仿真和verilog的实现
- 戈泽尔算法源程序
- XXXXXXRobustControlDesignwithMATLAB.pdf
- USB CAN 二次开发源代码 matlab版本Demo
- 十分钟搞定matlab GUI
- 克里金插值法MATLAB工具箱
- Matlab的GUI展示两种图像加密算法
- Matlab程序,是播放音乐文件的波形和
- matlab带通滤波器
- MATLAB 2014b破解
- 鲸鱼优化算法(WOAMatlab).zip
- matlab实现近似熵值的计算
- matlab图像处理包括数据反演以及其他
评论
共有 条评论