资源简介
用matlabGUI设计一个音乐播放器,添加歌单列表,播放暂停,切歌,时间进度条
代码片段和文件信息
function varargout = music(varargin)
% MUSIC MATLAB code for music.fig
% MUSIC by itself creates a new MUSIC or raises the existing
% singleton*.
%
% H = MUSIC returns the handle to a new MUSIC or the handle to
% the existing singleton*.
%
% MUSIC(‘CALLBACK‘hobjecteventDatahandles...) calls the local
% function named CALLBACK in MUSIC.M with the given input arguments.
%
% MUSIC(‘Property‘‘Value‘...) creates a new MUSIC or raises the
% existing singleton*. Starting from the left property value pairs are
% applied to the GUI before music_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to music_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 music
% Last Modified by GUIDE v2.5 04-May-2017 11:14:34
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘ mfilename ...
‘gui_Singleton‘ gui_Singleton ...
‘gui_OpeningFcn‘ @music_OpeningFcn ...
‘gui_OutputFcn‘ @music_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 music is made visible.
function music_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 music (see VARARGIN)
% Choose default command line output for music
handles.output = hobject;
global signal_stop signal_start signal_skip
signal_stop=0;
signal_start=0;
signal_skip=0;
fid=fopen(‘data.txt‘‘r‘);
data=importdata(‘data.xls‘);
set(handles.listbox1‘String‘data);
guidata(hobject handles);
% UIWAIT makes music wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = music_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 selection change in listbox1.
function listbox1_Callback(hobject eventdata handles)
% hobject handle to listbox1 (see GCBO)
% eventdata reserved - to be defi
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 13874 2017-05-04 15:17 music.fig
文件 12690 2017-05-04 15:53 music.m
文件 502 2017-05-04 15:58 readme.txt
- 上一篇:MATLAB中SSI参数识别源程序
- 下一篇:球体和圆柱体的Mie散射参考程序
相关资源
- Pattern Recognition and Machine Learning(高清
- 均值滤波和FFT频谱分析Matlab代码
- 欧拉放大论文及matlab代码
- GPS信号的码捕获matlab代码.7z
- matlab读取SP3文件
- 图像的饱和度,亮度,色调的matlab代
- 肤色检测matlab代码
- sutton强化学习随书MATLAB代码
- 压缩鬼成像matlab代码
- 压缩感知(Compressed Sensing CS)matlab代
- 基于OFDMA系统的多用户资源分配算法,
- Allan方差分析MATLAB代码,含MPU6050八小
- 均匀球体剖面重力异常正演模拟Matl
- 印章识别matlab代码
- 连续潮流matlab代码
- 线性拟合仿真-最小二乘法、正交回归
- 矩阵填充MATLAB代码
- 大型飞机航拍图处理matlab代码
- LMS语音信号去噪matlab代码
- 卡尔曼滤波MATLAB代码170027
- Matlab代码编写的semi-supervised CCA 程序
- EOF分析matlab代码
- 尾灯识别matlab代码
- 背景差分法的MATLAB代码
- eemd算法程序 matlab代码
- 关于投影与反投影的matlab代码
- siftmatlab算法实现
- 灰狼优化算法求解柔性作业车间问题
- 遗传算法GA车间调度Matlab代码
- 关于通过功率谱分析提取信号周期的
评论
共有 条评论