view m-toolbox/classes/@time/getTimezones.m @ 49:0bcdf74587d1
database-connection-manager
Cleanup
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Wed, 07 Dec 2011 17:24:36 +0100 (2011-12-07)
parents
f0afece42f48
children
line source
+ − % GETTIMEZONES Get all possible timezones.
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ − %
+ − % DESCRIPTION: Get all possible timezones.
+ − %
+ − % CALL: zones = obj.getTimezones();
+ − %
+ − % INPUTS: obj - can be a vector, matrix, list, or a mix of them.
+ − %
+ − % VERSION: $Id: getTimezones.m,v 1.6 2011/02/18 16:48:55 ingo Exp $
+ − %
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ −
+ − function varargout = getTimezones(varargin)
+ −
+ − varargout{1} = utils.timetools.getTimezone;
+ −
+ − end
+ −