1## Copyright (C) 2008, 2009 David Bateman
3## This file is part of Octave.
5## Octave is free software; you can redistribute it and/or modify it
6## under the terms of the GNU General Public License as published by
7## the Free Software Foundation; either version 3 of the License, or (at
8## your option) any later version.
10## Octave is distributed in the hope that it will be useful, but
11## WITHOUT ANY WARRANTY; without even the implied warranty of
12## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13## General Public License for more details.
15## You should have received a copy of the GNU General Public License
16## along with Octave; see the file COPYING. If not, see
17## <http://www.gnu.org/licenses/>.
20## @deftypefn {Function File} {} datetick (@var{form})
21## @deftypefnx {Function File} {} datetick (@var{axis}, @var{form})
22## @deftypefnx {Function File} {} datetick (@dots{}, "keeplimits")
23## @deftypefnx {Function File} {} datetick (@dots{}, "keepticks")
24## @deftypefnx {Function File} {} datetick (@dots{ax}, @dots{})
25## Adds date formatted tick labels to an axis. The axis the apply the
26## ticks to is determined by @var{axis} that can take the values "x",
27## "y" or "z". The default value is "x". The formatting of the labels is
28## determined by the variable @var{form}, that can either be a string in
29## the format needed by @code{dateform}, or a positive integer that can
30## be accepted by @code{datestr}.
31## @seealso{datenum, datestr}
34function datetick (varargin)
36 [h, varargin, nargin] = __plt_get_axis_arg__ ("datetick", varargin{:});
44 __datetick__ (varargin{:});
45 unwind_protect_cleanup
53%! pop = [76.094, 92.407, 106.461, 123.077 131.954, 151.868, 179.979, ...
54%! 203.984, 227.225, 249.623, 282.224];
55%! plot (datenum (yr, 1, 1), pop);
56%! title ("US population (millions)");
58%! datetick ("x", "YYYY");
60function __datetick__ (varargin)
68 if (strcmpi (arg, "keeplimits"))
71 elseif (strcmpi (arg, "keeptick"))
79 nargin = length (varargin);
85 if (ischar(arg) && (strcmp (arg, "x") || strcmp (arg, "y") ||
100 ## Don't publish the existence of this variable for use with dateaxis
101 if (length (varargin) > 0)
102 startdate = varargin{1};
107 if (isnumeric (form))
108 if (! isscalar (form) || floor (form) != form || form < 0)
109 error ("datetick: expecting form argument to be a positive integer");
111 elseif (! ischar (form) && !isempty (form))
112 error ("datetick: expecting valid date format string");
116 ticks = get (gca (), strcat (ax, "tick"))
118 ## Need to do our own axis tick position calculation as
119 ## year, etc, don't fallback on nice datenum values.
120 objs = findall (gca());
123 for i = 1 : length (objs)
124 fld = get (objs (i));
125 if (isfield (fld, strcat (ax, "data")))
126 xdata = getfield (fld, strcat (ax, "data"))(:);
127 xmin = min (xmin, min (xdata));
128 xmax = max (xmax, max (xdata));
132 if (isnan (xmin) || isnan (xmax))
135 elseif (xmin == xmax)
142 if (xmax - xmin < N / 24 / 60 / 60)
143 scl = 1 / 24 / 60 / 60;
144 elseif (xmax - xmin < N / 24 / 6)
149 sep = __calc_tick_sep__ (xmin / scl , xmax / scl);
150 xmin = sep * floor (xmin / scl / sep);
151 xmax = sep * ceil (xmax / scl / sep);
152 nticks = (xmax - xmin) / sep + 1;
156 [ymin, mmin, dmin] = datevec (xmin);
157 [ymax, mmax, dmax] = datevec (xmax);
158 minyear = ymin + (mmin - 1) / 12 + (dmin - 1) / 12 / 30;
159 maxyear = ymax + (mmax - 1) / 12 + (dmax - 1) / 12 / 30;
160 minmonth = mmin + (dmin - 1) / 30;
161 maxmonth = (ymax - ymin) * 12 + mmax + (dmax - 1) / 30;
163 if (maxmonth - minmonth < N)
164 sep = __calc_tick_sep__ (xmin, xmax);
165 xmin = sep * floor (xmin / sep);
166 xmax = sep * ceil (xmax / sep);
167 nticks = (xmax - xmin) / sep + 1;
168 elseif (maxyear - minyear < N)
169 sep = __calc_tick_sep__ (minmonth , maxmonth);
170 xmin = datenum (ymin, sep * floor (minmonth / sep), 1);
171 xmax = datenum (ymin, sep * ceil (maxmonth / sep), 1);
172 nticks = ceil (maxmonth / sep) - floor (minmonth / sep) + 1;
174 sep = __calc_tick_sep__ (minyear , maxyear);
175 xmin = datenum (sep * floor (minyear / sep), 1, 1);
176 xmax = datenum (sep * ceil (maxyear / sep), 1, 1);
177 nticks = ceil (maxyear / sep) - floor (minyear / sep) + 1;
180 ticks = xmin + [0 : nticks - 1] / (nticks - 1) * (xmax - xmin);
184 r = max(ticks) - min(ticks);
186 ## minutes and seconds
206 if (length (ticks) == 6)
207 ## Careful that its not treated as a datevec
208 if (! isempty (startdate))
209 sticks = strvcat (datestr (ticks(1:end-1) - ticks(1) + startdate, form),
210 datestr (ticks(end) - ticks(1) + startdate, form));
212 sticks = strvcat (datestr (ticks(1:end-1), form),
213 datestr (ticks(end), form));
216 if (! isempty (startdate))
217 sticks = datestr (ticks - ticks(1) + startdate, form);
219 sticks = datestr (ticks, form);
223 sticks = mat2cell (sticks, ones (rows (sticks), 1), columns (sticks));
227 set (gca(), strcat (ax, "ticklabel"), sticks);
229 set (gca(), strcat (ax, "ticklabel"), sticks, strcat (ax, "lim"),
230 [min(ticks), max(ticks)]);
234 set (gca(), strcat (ax, "tick"), ticks, strcat (ax, "ticklabel"), sticks);
236 set (gca(), strcat (ax, "tick"), ticks, strcat (ax, "ticklabel"), sticks,
237 strcat (ax, "lim"), [min(ticks), max(ticks)]);
242function [a, b] = __magform__ (x)
261## A translation from Tom Holoryd's python code at
262## http://kurage.nimh.nih.gov/tomh/tics.py
263function sep = __calc_tick_sep__ (lo, hi)
264 persistent sqrt_2 = sqrt (2.0);
265 persistent sqrt_10 = sqrt (10.0);
266 persistent sqrt_50 = sqrt (50.0);
270 ## Reference: Lewart, C. R., "Algorithms SCALE1, SCALE2, and
271 ## SCALE3 for Determination of Scales on Computer Generated
272 ## Plots", Communications of the ACM, 10 (1973), 639-640.
273 ## Also cited as ACM Algorithm 463.
275 [a, b] = __magform__ ((hi - lo) / ticint);