comparison scripts/plot/draw/private/__stem__.m @ 19630:0e1f5a750d00

maint: Periodic merge of gui-release to default.
author John W. Eaton <jwe@octave.org>
date Tue, 20 Jan 2015 10:24:46 -0500
parents aea099cd1ee7 446c46af4b42
children db92e7e28e1f
comparison
equal deleted inserted replaced
19626:37d37297acf8 19630:0e1f5a750d00
190 if (have_z) 190 if (have_z)
191 caller = "stem3"; 191 caller = "stem3";
192 else 192 else
193 caller = "stem"; 193 caller = "stem";
194 endif 194 endif
195 nargin = nargin - 1; # account for have_z argument 195 nargin = nargin - 1; # account for have_z argument
196 196
197 num_numeric = find (cellfun ("isclass", varargin, "char"), 1) - 1; 197 num_numeric = find (cellfun ("isclass", varargin, "char"), 1) - 1;
198 if (isempty (num_numeric)) 198 if (isempty (num_numeric))
199 num_numeric = nargin; 199 num_numeric = nargin;
200 endif 200 endif
201 201
202 if (num_numeric < 1 || num_numeric > 3) 202 if (num_numeric < 1 || num_numeric > 3)
203 print_usage (caller); 203 print_usage (caller);
204 endif 204 endif