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

mirtype(x)
function type = mirtype(x)

if iscell(x)
    for i = 1:length(x)
        type{i} = mirtype(x{i});
    end
    return
end
    
if isa(x,'mirdesign')
    type = get(x,'Type');
else
    type = class(x);
end

Contact us at files@mathworks.com