comparison scripts/signal/unwrap.m @ 6046:34f96dd5441b

[project @ 2006-10-10 16:10:25 by jwe]
author jwe
date Tue, 10 Oct 2006 16:10:31 +0000
parents 4c8a2e4e0717
children 93c65f2a5668
comparison
equal deleted inserted replaced
6045:421d8a903df7 6046:34f96dd5441b
31 ## Author: Bill Lash <lash@tellabs.com> 31 ## Author: Bill Lash <lash@tellabs.com>
32 32
33 function retval = unwrap (a, tol, dim) 33 function retval = unwrap (a, tol, dim)
34 34
35 if (nargin < 1 || nargin > 3) 35 if (nargin < 1 || nargin > 3)
36 usage ("unwrap (a [, tol [, dim]])") 36 print_usage ();
37 endif 37 endif
38 38
39 nd = ndims (a); 39 nd = ndims (a);
40 sz = size (a); 40 sz = size (a);
41 41