# HG changeset patch # User jwe # Date 746725248 0 # Node ID 0fda6e1f90e04c610fa111312f351e0bea62c8a5 # Parent 1cc0af4496c66468130876049e697f6fe2d10a11 [project @ 1993-08-30 15:40:16 by jwe] diff -r 1cc0af4496c6 -r 0fda6e1f90e0 scripts/control/abcddim.m --- a/scripts/control/abcddim.m Mon Aug 30 15:33:25 1993 +0000 +++ b/scripts/control/abcddim.m Mon Aug 30 15:40:48 1993 +0000 @@ -11,7 +11,7 @@ # # Returns n = m = p = -1 if the system is not compatible. -# Written by A. S. Hodel (scotte@eng.auburn.edu) August 1993 +# Written by A. S. Hodel (scotte@eng.auburn.edu) August 1993. if (nargin != 4) error ("abcddim: illegal number of arguments. need four.") diff -r 1cc0af4496c6 -r 0fda6e1f90e0 scripts/control/is_observable.m --- a/scripts/control/is_observable.m Mon Aug 30 15:33:25 1993 +0000 +++ b/scripts/control/is_observable.m Mon Aug 30 15:40:48 1993 +0000 @@ -6,6 +6,8 @@ # # See also: size, rows, columns, length, is_matrix, is_scalar, is_vector. +# Written by A. S. Hodel (scotte@eng.auburn.edu) August 1993. + if (nargin == 2) retval = is_controllable (a', c'); elseif (nargin == 3) diff -r 1cc0af4496c6 -r 0fda6e1f90e0 scripts/general/is_square.m --- a/scripts/general/is_square.m Mon Aug 30 15:33:25 1993 +0000 +++ b/scripts/general/is_square.m Mon Aug 30 15:40:48 1993 +0000 @@ -7,6 +7,8 @@ # # See also: size, rows, columns, length, is_matrix, is_scalar, is_vector +# Written by A. S. Hodel (scotte@eng.auburn.edu) August 1993. + if (nargin == 1) [nr, nc] = size (x); if (nr == nc)