comparison scripts/deprecated/is_list.m @ 7693:8e5371d47da6

note version when functions were deprecated
author John W. Eaton <jwe@octave.org>
date Thu, 03 Apr 2008 21:56:23 -0400
parents a1dbe9d80eee
children 0a362fa8f3c8
comparison
equal deleted inserted replaced
7692:da1f4bc7cbe8 7693:8e5371d47da6
21 ## This function has been deprecated. Use islist instead. 21 ## This function has been deprecated. Use islist instead.
22 ## @end deftypefn 22 ## @end deftypefn
23 23
24 ## Author: jwe 24 ## Author: jwe
25 25
26 ## Deprecated in version 3.0
27
26 function retval = is_list (varargin) 28 function retval = is_list (varargin)
27 29
28 retval = islist (varargin{:}); 30 retval = islist (varargin{:});
29 31
30 endfunction 32 endfunction