Mercurial > hg > octave-lyh
comparison scripts/control/system/tf2sys.m @ 7136:59dcf01bb3e3
[project @ 2007-11-08 20:18:25 by jwe]
author | jwe |
---|---|
date | Thu, 08 Nov 2007 20:18:26 +0000 |
parents | f084ba47812b |
children |
comparison
equal
deleted
inserted
replaced
7135:8aa770b6c5bf | 7136:59dcf01bb3e3 |
---|---|
62 ## updated for new system data structure format July 1996 | 62 ## updated for new system data structure format July 1996 |
63 ## name changed to tf Feb 2004 | 63 ## name changed to tf Feb 2004 |
64 | 64 |
65 function outsys = tf2sys (varargin) | 65 function outsys = tf2sys (varargin) |
66 | 66 |
67 warning("tf2sys is deprecated. Use tf() instead."); | 67 warning ("tf2sys is deprecated. Use tf instead."); |
68 outsys = tf(varargin{:}); | 68 outsys = tf (varargin{:}); |
69 | 69 |
70 endfunction | 70 endfunction |