diff scripts/control/system/sysgroup.m @ 5016:bdbee5282954

[project @ 2004-09-22 02:50:35 by jwe]
author jwe
date Wed, 22 Sep 2004 02:50:36 +0000
parents b8105302cfe8
children 4c8a2e4e0717
line wrap: on
line diff
--- a/scripts/control/system/sysgroup.m
+++ b/scripts/control/system/sysgroup.m
@@ -17,14 +17,21 @@
 ## Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA.
 
 ## -*- texinfo -*-
-## @deftypefn {Function File} {} sysgroup (@var{asys}, @var{bsys})
-## Combines two systems into a single system
+## @deftypefn {Function File} {@var{sys} =} sysgroup (@var{asys}, @var{bsys})
+## Combines two systems into a single system.
 ##
 ## @strong{Inputs}
-## @var{asys}, @var{bsys}: system data structures
+## @table @var
+## @item asys
+## @itemx bsys
+## System data structures.
+## @end table
 ##
-## @strong{Outputs}
+## @strong{Output}
+## @table @var
+## @item sys
 ## @math{sys = @r{block diag}(asys,bsys)}
+## @end table
 ## @example
 ## @group
 ##          __________________
@@ -39,8 +46,7 @@
 ## @end group
 ## @end example
 ## The function also rearranges the internal state-space realization of @var{sys}
-## so that the
-## continuous states come first and the discrete states come last.
+## so that the continuous states come first and the discrete states come last.
 ## If there are duplicate names, the second name has a unique suffix appended
 ## on to the end of the name.
 ## @end deftypefn