• 大小: 2.48MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-11-05
  • 语言: Matlab
  • 标签: matlab  gui  播放器  

资源简介

能显示波形和频谱,自己做的,供学习交流用

资源截图

代码片段和文件信息

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_player\hdm.wav

     文件       9804  2012-03-07 19:36  hdm_player\hdm_player.fig

     文件      10533  2012-03-07 22:43  hdm_player\hdm_player.m

     目录          0  2012-03-09 16:40  hdm_player

----------- ---------  ---------- -----  ----

              3950047                    4


评论

共有 条评论