annotate toolboxes/MIRtoolbox1.3.2/MIRToolbox/@miremotion/display.m @ 0:cc4b1211e677 tip

initial commit to HG from Changeset: 646 (e263d8a21543) added further path and more save "camirversion.m"
author Daniel Wolff
date Fri, 19 Aug 2016 13:07:06 +0200
parents
children
rev   line source
Daniel@0 1 function display(e)
Daniel@0 2 % MIREMOTION/DISPLAY display of emotion contents
Daniel@0 3 d = get(e,'Dim');
Daniel@0 4 dd = get(e,'DimData');
Daniel@0 5 c = get(e,'Class');
Daniel@0 6 cd = get(e,'ClassData');
Daniel@0 7 fp = get(e,'FramePos');
Daniel@0 8 n = get(e,'Name');
Daniel@0 9 if not(isempty(d))
Daniel@0 10 s = mirscalar(e);
Daniel@0 11 s = set(s,'Pos',repmat({{d'}},size(dd)),'Data',dd,...
Daniel@0 12 'Title','Dimensional Emotion','Abs','Emotion Dimensions')
Daniel@0 13 end
Daniel@0 14 if not(isempty(c))
Daniel@0 15 s = mirscalar(e);
Daniel@0 16 s = set(s,'Pos',repmat({{c'}},size(cd)),'Data',cd,...
Daniel@0 17 'Title','Basic Emotion Set','Abs','Emotion Classes')
Daniel@0 18 end