Mercurial > hg > octave-lyh
view scripts/plot/hold.m @ 8171:15ffb9836c01
__go_draw_axes__.m: Remove depdenence on gnuplot version.
author | Ben Abbott <bpabbott@mac.com> |
---|---|
date | Thu, 02 Oct 2008 12:43:47 -0400 |
parents | a028a5960e18 |
children | 8e8afefe9466 |
line wrap: on
line source
## Copyright (C) 2005, 2006, 2007 John W. Eaton ## ## This file is part of Octave. ## ## Octave is free software; you can redistribute it and/or modify it ## under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 3 of the License, or (at ## your option) any later version. ## ## Octave is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with Octave; see the file COPYING. If not, see ## <http://www.gnu.org/licenses/>. ## -*- texinfo -*- ## @deftypefn {Function File} {} hold @var{args} ## Tell Octave to `hold' the current data on the graph when executing ## subsequent plotting commands. This allows you to execute a series of ## plot commands and have all the lines end up on the same graph. The ## default is for each new plot command to clear the plot device first. ## For example, the command ## ## @example ## hold on ## @end example ## ## @noindent ## turns the hold state on. An argument of @code{"off"} turns the hold ## state off, and @code{hold} with no arguments toggles the current hold ## state. ## ## @deftypefnx {Function File} {} hold (@var{h}, @dots{}) ## ## Applies to a specific axis or axes, associated with the handle(s), ## @var{h}. ## ## @end deftypefn ## PKG_ADD: mark_as_command hold function hold (varargin) if (nargin > 0 && ishandle (varargin{1})) [h, varargin, nargs] = __plt_get_axis_arg__ ("hold", varargin{:}); else h = gcf (); nargs = numel (varargin); endif hold_state = get (h, "nextplot"); if (nargs == 0) if (strcmp (hold_state, "add")) hold_state = "replace"; else hold_state = "add"; endif elseif (nargs == 1) state = varargin{1}; if (ischar (state)) if (strcmp ("off", state)) hold_state = "replace"; elseif (strcmp ("on", state)) hold_state = "add"; else print_usage (); endif endif else print_usage (); endif if (isfigure (h)) if (isempty (get (h, "currentaxes"))) set (h, "currentaxes", __go_axes__ (h)) endif axes_objs = findobj (h, "type", "axes"); h = [h; axes_objs]; endif set (h, "nextplot", hold_state); endfunction