Mercurial > hg > camir-aes2014
view toolboxes/MIRtoolbox1.3.2/MIRToolbox/@mirmidi/mirplay.m @ 0:e9a9cd732c1e tip
first hg version after svn
author | wolffd |
---|---|
date | Tue, 10 Feb 2015 15:05:51 +0000 |
parents | |
children |
line wrap: on
line source
function varargout = mirplay(a,varargin) % mirplay method for mirmidi objects. specif.option = struct; specif.eachchunk = 'Normal'; varargout = mirfunction(@mirplay,a,varargin,nargout,specif,@init,@main); if nargout == 0 varargout = {}; end function [x type] = init(x,option) type = ''; function noargout = main(a,option,postoption) if iscell(a) a = a{1}; end d = get(a,'Data'); n = get(a,'Name'); for k = 1:length(d) display(['Playing analysis of file: ' n{k}]) playmidi(d{k}); end noargout = {};