Mercurial > hg > octave-nkf
comparison scripts/control/system/tfout.m @ 4030:22bd65326ec1
[project @ 2002-08-09 18:58:13 by jwe]
author | jwe |
---|---|
date | Fri, 09 Aug 2002 19:00:16 +0000 |
parents | 7923abdeb4e5 |
children | cef48c4b902d |
comparison
equal
deleted
inserted
replaced
4029:2cc57b6169cf | 4030:22bd65326ec1 |
---|---|
34 | 34 |
35 if (nargin < 2 ) | (nargin > 3) | (nargout != 0 ) | 35 if (nargin < 2 ) | (nargin > 3) | (nargout != 0 ) |
36 usage("tfout(num,denom[,x])"); | 36 usage("tfout(num,denom[,x])"); |
37 endif | 37 endif |
38 | 38 |
39 if ( (!is_vector(num)) | (!is_vector(denom)) ) | 39 if ( (!isvector(num)) | (!isvector(denom)) ) |
40 error("tfout: first two argument must be vectors"); | 40 error("tfout: first two argument must be vectors"); |
41 endif | 41 endif |
42 | 42 |
43 if (nargin == 2) | 43 if (nargin == 2) |
44 x = "s"; | 44 x = "s"; |