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

frames = length(t)/3;

ts = reshape(t,frames,3);

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