RESHAPET reshape the time-vector to match the x vector. M Hewitson 31-01-07 $Id: reshapeT.html,v 1.1 2007/06/08 14:15:09 hewitson Exp $
0001 function ts = reshapeT(ts) 0002 0003 % RESHAPET reshape the time-vector to match the x vector. 0004 % 0005 % M Hewitson 31-01-07 0006 % 0007 % $Id: reshapeT.html,v 1.1 2007/06/08 14:15:09 hewitson Exp $ 0008 % 0009 0010 if size(ts.t, 1) ~= size(ts.x,1) 0011 ts.t = [ts.t].'; 0012 end 0013 0014 % END