Code covered by the BSD License  

Highlights from
MIRtoolbox

image thumbnail
from MIRtoolbox by Olivier Lartillot
An innovative environment, on top of Matlab, for music and audio analysis

mirscalar(orig,varargin)
function s = mirscalar(orig,varargin)
%   s = mirscalar(x,n) creates a scalar object

if nargin == 0
    orig = [];
end
if iscell(orig)
    orig = orig{1};
end
if isa(orig,'mirscalar')
    s.mode = orig.mode;
    s.legend = orig.legend;
    s.parameter = orig.parameter;
else
    s.mode = [];
    s.legend = '';
    s.parameter = struct;
end
s = class(s,'mirscalar',mirdata(orig));
s = purgedata(s);
s = set(s,'Pos',{},'Abs','Temporal position of frames','Ord','Value',varargin{:});

Contact us at files@mathworks.com