comparison scripts/plot/pie3.m @ 11587:c792872f8942

all script files: untabify and strip trailing whitespace
author John W. Eaton <jwe@octave.org>
date Thu, 20 Jan 2011 17:35:29 -0500
parents 3c6e8aaa9555
children 68ac95d2460c
comparison
equal deleted inserted replaced
11586:12df7854fa7c 11587:c792872f8942
21 ## @deftypefn {Function File} {} pie3 (@var{x}) 21 ## @deftypefn {Function File} {} pie3 (@var{x})
22 ## @deftypefnx {Function File} {} pie3 (@var{x}, @var{explode}) 22 ## @deftypefnx {Function File} {} pie3 (@var{x}, @var{explode})
23 ## @deftypefnx {Function File} {} pie3 (@dots{}, @var{labels}) 23 ## @deftypefnx {Function File} {} pie3 (@dots{}, @var{labels})
24 ## @deftypefnx {Function File} {} pie3 (@var{h}, @dots{}); 24 ## @deftypefnx {Function File} {} pie3 (@var{h}, @dots{});
25 ## @deftypefnx {Function File} {@var{h} =} pie3 (@dots{}); 25 ## @deftypefnx {Function File} {@var{h} =} pie3 (@dots{});
26 ## Draw a a 3-D pie chart. 26 ## Draw a a 3-D pie chart.
27 ## 27 ##
28 ## Called with a single vector argument, produces a 3-D pie chart of the 28 ## Called with a single vector argument, produces a 3-D pie chart of the
29 ## elements in @var{x}, with the size of the slice determined by percentage 29 ## elements in @var{x}, with the size of the slice determined by percentage
30 ## size of the values of @var{x}. 30 ## size of the values of @var{x}.
31 ## 31 ##
32 ## The variable @var{explode} is a vector of the same length as @var{x} that 32 ## The variable @var{explode} is a vector of the same length as @var{x} that
33 ## if non zero 'explodes' the slice from the pie chart. 33 ## if non zero 'explodes' the slice from the pie chart.
34 ## 34 ##
35 ## If given @var{labels} is a cell array of strings of the same length as 35 ## If given @var{labels} is a cell array of strings of the same length as
36 ## @var{x}, giving the labels of each of the slices of the pie chart. 36 ## @var{x}, giving the labels of each of the slices of the pie chart.
37 ## 37 ##
38 ## The optional return value @var{h} provides a handle list to patch, surface 38 ## The optional return value @var{h} provides a handle list to patch, surface
39 ## and text objects generating this plot. 39 ## and text objects generating this plot.
40 ## 40 ##
41 ## @seealso{pie, bar, stem} 41 ## @seealso{pie, bar, stem}