CHAR convert a time object into a string. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% DESCRIPTION: CHAR convert a time object into a string. CALL: string = char(time) VERSION: $Id: char.m,v 1.3 2007/08/03 12:13:45 ingo Exp $ HISTORY: 23-07-2007 Diepholz Creation %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0001 function pstr = char(tt) 0002 % CHAR convert a time object into a string. 0003 % 0004 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0005 % 0006 % DESCRIPTION: CHAR convert a time object into a string. 0007 % 0008 % CALL: string = char(time) 0009 % 0010 % VERSION: $Id: char.m,v 1.3 2007/08/03 12:13:45 ingo Exp $ 0011 % 0012 % HISTORY: 23-07-2007 Diepholz 0013 % Creation 0014 % 0015 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0016 0017 pstr = tt.time_str; 0018 0019 % END