comparison scripts/plot/stem3.m @ 7218:02eb1619b857

[project @ 2007-11-29 21:10:55 by jwe]
author jwe
date Thu, 29 Nov 2007 21:10:55 +0000
parents c8abc18322b7
children ef3fad1f36da
comparison
equal deleted inserted replaced
7217:c8abc18322b7 7218:02eb1619b857
35 ## @seealso{bar, barh, stem, plot} 35 ## @seealso{bar, barh, stem, plot}
36 ## @end deftypefn 36 ## @end deftypefn
37 37
38 function h = stem3 (varargin) 38 function h = stem3 (varargin)
39 39
40 if (nargin < 3 || nargin > 4)
41 print_usage ();
42 endif
43
40 tmp = __stem__ (true, varargin{:}); 44 tmp = __stem__ (true, varargin{:});
41 45
42 if (nargout > 0) 46 if (nargout > 0)
43 h = tmp; 47 h = tmp;
44 endif 48 endif