Mercurial > hg > octave-lyh
comparison scripts/signal/unwrap.m @ 11472:1740012184f9
Use uppercase for variable names in error() strings to match Info documentation. Only m-files done.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Sun, 09 Jan 2011 21:33:04 -0800 |
parents | 994e2a93a8e2 |
children | fd0a3ac60b0e |
comparison
equal
deleted
inserted
replaced
11471:994e2a93a8e2 | 11472:1740012184f9 |
---|---|
35 if (nargin < 1 || nargin > 3) | 35 if (nargin < 1 || nargin > 3) |
36 print_usage (); | 36 print_usage (); |
37 endif | 37 endif |
38 | 38 |
39 if (!isnumeric(x)) | 39 if (!isnumeric(x)) |
40 error ("unwrap: x must be a numeric matrix or vector"); | 40 error ("unwrap: X must be a numeric matrix or vector"); |
41 endif | 41 endif |
42 | 42 |
43 if (nargin < 2 || isempty (tol)) | 43 if (nargin < 2 || isempty (tol)) |
44 tol = pi; | 44 tol = pi; |
45 endif | 45 endif |