Mercurial > hg > ltpda
comparison m-toolbox/classes/@time/getTimezones.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f0afece42f48 |
---|---|
1 % GETTIMEZONES Get all possible timezones. | |
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
3 % | |
4 % DESCRIPTION: Get all possible timezones. | |
5 % | |
6 % CALL: zones = obj.getTimezones(); | |
7 % | |
8 % INPUTS: obj - can be a vector, matrix, list, or a mix of them. | |
9 % | |
10 % VERSION: $Id: getTimezones.m,v 1.6 2011/02/18 16:48:55 ingo Exp $ | |
11 % | |
12 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
13 | |
14 function varargout = getTimezones(varargin) | |
15 | |
16 varargout{1} = utils.timetools.getTimezone; | |
17 | |
18 end | |
19 |