Mercurial > hg > octave-lyh
view scripts/plot/__bar__.m @ 8920:eb63fbe60fab
update copyright notices
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Sat, 07 Mar 2009 10:41:27 -0500 |
parents | 7d48766c21a5 |
children |
line wrap: on
line source
## Copyright (C) 1996, 1997, 2007, 2008, 2009 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} {} __bar__ (@var{vertical}, @var{func}, @dots{}) ## Undocumented internal function. ## @end deftypefn ## Author: jwe function varargout = __bar__ (vertical, func, varargin) [h, varargin] = __plt_get_axis_arg__ ((nargout > 1), func, varargin{:}); ## Slightly smaller than 0.8 to avoid clipping issue in gnuplot 4.0 width = 0.8 - 10 * eps; group = true; bv = 0; if (nargin < 3) print_usage (); endif if (nargin > 3 && isnumeric (varargin{2})) x = varargin{1}; if (isvector (x)) x = x(:); endif y = varargin{2}; if (isvector (y)) y = y(:); endif if (size (x, 1) != size (y, 1)) y = varargin{1}; if (isvector (y)) y = y(:); endif x = [1:size(y,1)]'; idx = 2; else if (! isvector (x)) error ("%s: x must be a vector", func); endif idx = 3; endif else y = varargin{1}; if (isvector (y)) y = y(:); endif x = [1:size(y,1)]'; idx = 2; endif newargs = {}; have_line_spec = false; while (idx <= nargin - 2) if (ischar (varargin{idx}) && strcmpi (varargin{idx}, "grouped")) group = true; idx++; elseif (ischar (varargin{idx}) && strcmpi (varargin{idx}, "stacked")) group = false; idx++; else if ((ischar (varargin{idx}) || iscell (varargin{idx})) && ! have_line_spec) [linespec, valid] = __pltopt__ (func, varargin{idx}, false); if (valid) have_line_spec = true; newargs = [{linespec.color}, newargs]; idx++; continue; endif endif if (isscalar(varargin{idx})) width = varargin{idx++}; elseif (idx == nargin - 2) newargs = [newargs,varargin(idx++)]; elseif (ischar (varargin{idx}) && strcmpi (varargin{idx}, "basevalue") && isscalar (varargin{idx+1})) bv = varargin{idx+1}; idx += 2; else newargs = [newargs,varargin(idx:idx+1)]; idx += 2; endif endif endwhile xlen = size (x, 1); ylen = size (y, 1); if (xlen != ylen) error ("%s: length of x and y must be equal", func); endif if (any (x(2:end) < x(1:end-1))) error ("%s: x vector values must be in ascending order", func); endif ycols = size (y, 2); cutoff = min (diff (double(x))) / 2; if (group) delta_p = delta_m = repmat (cutoff * width / ycols, size (x)); else delta_p = delta_m = repmat (cutoff * width, size (x)); endif x1 = (x - delta_m)(:)'; x2 = (x + delta_p)(:)'; xb = repmat ([x1; x1; x2; x2](:), 1, ycols); if (group) offset = ((delta_p + delta_m) * [-(ycols - 1) / 2 : (ycols - 1) / 2]); xb(1:4:4*ylen,:) += offset; xb(2:4:4*ylen,:) += offset; xb(3:4:4*ylen,:) += offset; xb(4:4:4*ylen,:) += offset; y0 = zeros (size (y)) + bv; y1 = y; else y1 = cumsum(y,2); y0 = [zeros(ylen,1)+bv, y1(:,1:end-1)]; endif yb = zeros (4*ylen, ycols); yb(1:4:4*ylen,:) = y0; yb(2:4:4*ylen,:) = y1; yb(3:4:4*ylen,:) = y1; yb(4:4:4*ylen,:) = y0; xb = reshape (xb, [4, numel(xb) / 4 / ycols, ycols]); yb = reshape (yb, [4, numel(yb) / 4 / ycols, ycols]); if (nargout < 2) oldh = gca (); unwind_protect axes (h); newplot (); tmp = __bars__ (h, vertical, x, y, xb, yb, width, group, have_line_spec, bv, newargs{:}); if (nargout == 1) varargout{1} = tmp; endif unwind_protect_cleanup axes (oldh); end_unwind_protect else if (vertical) varargout{1} = xb; varargout{2} = yb; else varargout{1} = yb; varargout{2} = xb; endif endif endfunction