summaryrefslogtreecommitdiffstats
path: root/SD-VBS/common/toolbox/toolbox_basic/fact/show_t.m
blob: b475c76461e62f26c9734eacbe97b1ca47a4c6bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
function show_t(t)

frames = 0.5*length(t);

ts = reshape(t,frames,2);

plot(ts(:,1),ts(:,2));
hold on
plot(ts(:,1),ts(:,2),'rx');
hold off;