comparison scripts/control/sysdisc.m @ 3346:8dd4718801fd

[project @ 1999-11-09 18:18:12 by jwe]
author jwe
date Tue, 09 Nov 1999 18:18:37 +0000
parents f7e4a95916f2
children 69b167451491
comparison
equal deleted inserted replaced
3345:c7ed52f51470 3346:8dd4718801fd
13 # for more details. 13 # for more details.
14 # 14 #
15 # You should have received a copy of the GNU General Public License 15 # You should have received a copy of the GNU General Public License
16 # along with Octave; see the file COPYING. If not, write to the Free 16 # along with Octave; see the file COPYING. If not, write to the Free
17 # Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. 17 # Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA.
18
19 ## -*- texinfo -*-
20 ## @deftypefn {Function File } { [@var{dsys}, @var{Adc}, @var{Cdc}] =} sysdisc (@var{sys})
21 ##
22 ## @strong{Inputs}
23 ## @var{sys} = system data structure
24 ##
25 ## @strong{Outputs}
26 ## @table @var
27 ## @item dsys
28 ## purely discrete portion of sys (returned empty if there is
29 ## no purely discrete path from inputs to outputs)
30 ## @item Adc, Cdc
31 ## connections from continuous states to discrete states and discrete
32 ## outputs, respectively.
33 ## @end table
34 ##
35 ## @end deftypefn
18 36
19 function [dsys,Adc,Cdc] = sysdisc(sys) 37 function [dsys,Adc,Cdc] = sysdisc(sys)
20 # function [dsys,Adc,Cdc] = sysdisc(sys) 38 # function [dsys,Adc,Cdc] = sysdisc(sys)
21 # inputs: sys = system data structure 39 # inputs: sys = system data structure
22 # outputs: 40 # outputs: