dateutils/tzconv.m
Ruediger Meier 4295afedcc Accepting request 254205 from home:rudi_m
- bump version 0.3.0, this is a feature release.
  * Features:
    - dgrep supports time zones both for the expression and the
      input
    - timezones can be specified by alternative codes and
      [tzmap files][1]
    - new tool dzone to inspect date/times in multiple timezones in
      bulk
    - new tool dsort to sort input chronologically
    - gengetopt and help2man maintainer dependencies removed
    - lilian/julian inputs via `-i ldn` and `-i jdn`
    - ymcw dates now follow ISO 8601 in using 07 to denote Sunday
  * Bugfixes:
    - ddiff takes differences between a unix epoch stamp and a
      date/time
    - zone converter assigns correct sign to zone difference when
      using %Z
    - weekdays are properly calculated from epoch stamps (issue 24)
  * See info page examples and/or README.
      [1]: http://www.fresse.org/dateutils/tzmaps.html 
- enable Octave/Matlab plugin
- remove useless devel package

OBS-URL: https://build.opensuse.org/request/show/254205
OBS-URL: https://build.opensuse.org/package/show/utilities/dateutils?expand=0&rev=28
2014-10-06 13:18:48 +00:00

17 lines
431 B
Matlab

% tzconv convert between timezones
%
% Syntax:
% d = tzconv(dates, from_zone, to_zone);
%
% Input Arguments:
% dates - a vector of matlab dates to be converted
% from_zone - interpret DATES as coming from FROM_ZONE
% to_zone - convert DATEs to TO_ZONE
%
% Output Arguments:
% d - vector of dates in the result
%
% Copyright (C) 2013 Sebastian Freundt <freundt@ga-group.nl>
%
% This file is part of dateutils