Mercurial > hg > octave-nkf
view scripts/plot/__bar__.m @ 6886:1c1d62569590
[project @ 2007-09-10 20:58:34 by jwe]
author | jwe |
---|---|
date | Mon, 10 Sep 2007 20:58:34 +0000 |
parents | 987a7bf45c99 |
children | 76e3d985ae56 |
line wrap: on
line source
## Copyright (C) 1996, 1997 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 2, 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, write to the Free ## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA ## 02110-1301, USA. ## -*- texinfo -*- ## @deftypefn {Function File} {} __bar__ (@dots{}) ## Support function for @code{bar} and @code{hbar}. ## @seealso{bar, hbar} ## @end deftypefn ## Author: jwe function varargout = __bar__ (vertical, func, varargin) width = 0.8; group = true; 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 (isstr (varargin{idx}) && strcmp (varargin{idx}, "grouped")) group = true; idx++; elseif (isstr (varargin{idx}) && strcmp (varargin{idx}, "stacked")) group = false; idx++; else if ((isstr (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++)]; 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); if (group) width = width / ycols; endif cutoff = (x(1:end-1) + x(2:end)) / 2; delta_p = [(cutoff - x(1:end-1)); (x(end) - cutoff(end))] * width; delta_m = [(cutoff(1) - x(1)); (x(2:end) - cutoff)] * width; x1 = (x - delta_m)(:)'; x2 = (x + delta_p)(:)'; xb = repmat ([x1; x1; x2; x2](:), 1, ycols); if (group) width = width / ycols; 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)); y1 = y; else y1 = cumsum(y,2); y0 = [zeros(ylen,1), 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); yb = reshape (yb, 4, numel (yb) / 4); if (! have_line_spec) colors = [1, 0, 0; 0, 1, 0; 0, 0, 1; 1, 1, 0; 1, 0, 1; 0, 1, 1]; newargs = [{shiftdim(colors (mod (floor ([0 : (ycols * ylen - 1)] / ylen), 6) + 1, :), -1)}, newargs]; endif if (vertical) if (nargout < 1) patch (xb, yb, newargs {:}); elseif (nargout < 2) varargout{1} = patch (xb, yb, newargs {:}); else varargout{1} = xb; varargout{2} = yb; endif else if (nargout < 1) patch (yb, xb, newargs{:}); elseif (nargout < 2) varargout{1} = patch (yb, xb, newargs{:}); else varargout{1} = yb; varargout{2} = xb; endif endif endfunction