view m-toolbox/classes/@time/format.m @ 17:7afc99ec5f04
database-connection-manager
Update ao_model_retrieve_in_timespan
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05)
parents
f0afece42f48
children
line source
+ − % FORMAT Formats a time object into a string
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ − %
+ − % DESCRIPTION: FORMAT(TIME, FRMT, TIMEZONE) Formats the time object TIME into a
+ − % string, accordingly to the format descrption FRMT and the timezone TIMEZONE.
+ − %
+ − % The FRMT format description can be a format number or a free form date format
+ − % string, as accepted by the datestr() MATLAB function. The FRMT and TIMEZONE
+ − % arguments are optional, if they are not specified or empty, the ones stored in
+ − % the toolbox user preferences are used.
+ − %
+ − % EXAMPLES:
+ − %
+ − % >> t = time();
+ − % >> t.format();
+ − % >> t.format('yyyy-mm-dd HH:MM:SS.FFF z');
+ − % >> t.format('yyyy-mm-dd HH:MM:SS.FFF z', 'UTC');
+ − %
+ − % SEE ALSO: datestr time/strftime
+ − %
+ − % VERSION: $Id: format.m,v 1.19 2010/07/29 18:07:55 nicolodi Exp $
+ − %
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ −
+ − function str = format(tt, frmt, timezone)
+ −
+ − % check input arguments
+ − error(nargchk(1, 3, nargin, 'struct'));
+ −
+ − % second and third arguments are optional
+ − if nargin < 3
+ − timezone = '';
+ − end
+ − if nargin < 2
+ − frmt = '';
+ − end
+ −
+ − % format all input time objects
+ − str = time.strftime(tt(1).utc_epoch_milli, frmt, timezone);
+ − for k = 2:numel(tt)
+ − str = [ str ', ' time.strftime(tt(1).utc_epoch_milli, frmt, timezone)];
+ − end
+ −
+ − end
+ −