Mercurial > hg > camir-aes2014
annotate toolboxes/MIRtoolbox1.3.2/MIRToolbox/@miremotion/display.m @ 0:e9a9cd732c1e tip
first hg version after svn
author | wolffd |
---|---|
date | Tue, 10 Feb 2015 15:05:51 +0000 |
parents | |
children |
rev | line source |
---|---|
wolffd@0 | 1 function display(e) |
wolffd@0 | 2 % MIREMOTION/DISPLAY display of emotion contents |
wolffd@0 | 3 d = get(e,'Dim'); |
wolffd@0 | 4 dd = get(e,'DimData'); |
wolffd@0 | 5 c = get(e,'Class'); |
wolffd@0 | 6 cd = get(e,'ClassData'); |
wolffd@0 | 7 fp = get(e,'FramePos'); |
wolffd@0 | 8 n = get(e,'Name'); |
wolffd@0 | 9 if not(isempty(d)) |
wolffd@0 | 10 s = mirscalar(e); |
wolffd@0 | 11 s = set(s,'Pos',repmat({{d'}},size(dd)),'Data',dd,... |
wolffd@0 | 12 'Title','Dimensional Emotion','Abs','Emotion Dimensions') |
wolffd@0 | 13 end |
wolffd@0 | 14 if not(isempty(c)) |
wolffd@0 | 15 s = mirscalar(e); |
wolffd@0 | 16 s = set(s,'Pos',repmat({{c'}},size(cd)),'Data',cd,... |
wolffd@0 | 17 'Title','Basic Emotion Set','Abs','Emotion Classes') |
wolffd@0 | 18 end |