-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathplotTensorComps.m
More file actions
executable file
·67 lines (54 loc) · 1.79 KB
/
Copy pathplotTensorComps.m
File metadata and controls
executable file
·67 lines (54 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
function [ h ] = plotTensorComps( Y,opts )
defopts=struct('plotfunc','plot','position',[]);
if ~exist('opts','var')
opts=struct();
end
[plotfunc,fig_pos]=scanparam(defopts,opts);
Ycls=class(Y);
tensorName=inputname(1);
switch Ycls
case 'ktensor'
NumOfComp=length(Y.lambda);
NumOfMode=numel(size(Y));
NumOfComp=NumOfComp(ones(1,NumOfMode));
h=showComps;
case 'ttensor'
NumOfComp=size(Y.core);
NumOfMode=numel(NumOfComp);
h=showComps;
otherwise
h=[];
error('Unsupported data type.');
end
function h=showComps
tops=0.1;bots=0.1;Left=0.1;Rs=0.05;
h=figure('Unit','inches','Position',[0. 0. 3.5 2],'name',tensorName,'NumberTitle','off');
set(h,'Unit','Normalized');
movegui(h,'center');
height=(1-tops-bots)/(NumOfMode);
Top=1-tops;
for n=1:NumOfMode
bottom=Top-n*height;
width=(1-Left-Rs)/NumOfComp(n);
for c=1:NumOfComp(n)
subplot('position',[Left+(c-1)*width,bottom,width,height]);
drawComp(Y.U{n}(:,c),plotfunc);
set(gca,'XTickLabel','','YTickLabel','');
if c==1
ylabel([num2str(n)]);
end
end
end
end
function drawComp(s,plotfunc) % draw a signal by using plotfunc
switch plotfunc
case 'plot'
plot(s);
axis tight;
smin=min(s);smax=max(s);
ylim([smin-abs(smin)*0.1 smax+abs(smax)*0.1]);
otherwise
error('Unsupported plot function.');
end
end
end