comparison scripts/plot/stem.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 d65670971cbc
comparison
equal deleted inserted replaced
7217:c8abc18322b7 7218:02eb1619b857
92 ## Author: Michel D. Schmid <michaelschmid@users.sourceforge.net> 92 ## Author: Michel D. Schmid <michaelschmid@users.sourceforge.net>
93 ## Adapted-by: jwe 93 ## Adapted-by: jwe
94 94
95 function h = stem (varargin) 95 function h = stem (varargin)
96 96
97 if (nargin < 1 || nargin > 3)
98 print_usage ();
99 endif
100
97 tmp = __stem__ (false, varargin{:}); 101 tmp = __stem__ (false, varargin{:});
98 102
99 if (nargout > 0) 103 if (nargout > 0)
100 h = tmp; 104 h = tmp;
101 endif 105 endif