From: <par...@us...> - 2010-09-15 11:20:31
|
Revision: 7729 http://octave.svn.sourceforge.net/octave/?rev=7729&view=rev Author: paramaniac Date: 2010-09-15 11:20:24 +0000 (Wed, 15 Sep 2010) Log Message: ----------- control: fix ubiquitous typo Modified Paths: -------------- trunk/octave-forge/main/control/inst/@lti/__property_names__.m trunk/octave-forge/main/control/inst/__frequency_response__.m trunk/octave-forge/main/control/inst/covar.m trunk/octave-forge/main/control/inst/estim.m trunk/octave-forge/main/control/inst/gram.m trunk/octave-forge/main/control/inst/h2syn.m trunk/octave-forge/main/control/inst/hinfsyn.m trunk/octave-forge/main/control/inst/hsvd.m trunk/octave-forge/main/control/inst/margin.m trunk/octave-forge/main/control/inst/pzmap.m Modified: trunk/octave-forge/main/control/inst/@lti/__property_names__.m =================================================================== --- trunk/octave-forge/main/control/inst/@lti/__property_names__.m 2010-09-15 11:10:55 UTC (rev 7728) +++ trunk/octave-forge/main/control/inst/@lti/__property_names__.m 2010-09-15 11:20:24 UTC (rev 7729) @@ -15,7 +15,7 @@ ## -*- texinfo -*- ## @deftypefn {Function File} {[@var{props}, @var{vals}] =} __property_names__ (@var{sys}) -## Return the list of properties as well as the assignable values for a lti object sys. +## Return the list of properties as well as the assignable values for an LTI object sys. ## @end deftypefn ## Author: Lukas Reichlin <luk...@gm...> Modified: trunk/octave-forge/main/control/inst/__frequency_response__.m =================================================================== --- trunk/octave-forge/main/control/inst/__frequency_response__.m 2010-09-15 11:10:55 UTC (rev 7728) +++ trunk/octave-forge/main/control/inst/__frequency_response__.m 2010-09-15 11:20:24 UTC (rev 7729) @@ -27,7 +27,7 @@ ## check arguments if(! isa (sys, "lti")) - error ("frequency_response: first argument sys must be a LTI system"); + error ("frequency_response: first argument sys must be an LTI system"); endif if (! isempty (w) && ! (isreal (w) && isvector (w))) Modified: trunk/octave-forge/main/control/inst/covar.m =================================================================== --- trunk/octave-forge/main/control/inst/covar.m 2010-09-15 11:10:55 UTC (rev 7728) +++ trunk/octave-forge/main/control/inst/covar.m 2010-09-15 11:20:24 UTC (rev 7729) @@ -49,7 +49,7 @@ endif if (! isa (sys, "lti")) - error ("covar: first argument must be a lti model"); + error ("covar: first argument must be an LTI model"); endif if (! isstable (sys)) Modified: trunk/octave-forge/main/control/inst/estim.m =================================================================== --- trunk/octave-forge/main/control/inst/estim.m 2010-09-15 11:10:55 UTC (rev 7728) +++ trunk/octave-forge/main/control/inst/estim.m 2010-09-15 11:20:24 UTC (rev 7729) @@ -52,7 +52,7 @@ endif if (! isa (sys, "lti")) - error ("estim: first argument must be a LTI system"); + error ("estim: first argument must be an LTI system"); endif [a, b, c, d, tsam] = ssdata (sys); Modified: trunk/octave-forge/main/control/inst/gram.m =================================================================== --- trunk/octave-forge/main/control/inst/gram.m 2010-09-15 11:10:55 UTC (rev 7728) +++ trunk/octave-forge/main/control/inst/gram.m 2010-09-15 11:20:24 UTC (rev 7729) @@ -46,7 +46,7 @@ argin2 = lower (argin2); if (! isa (sys, "lti")) - error ("gram: first argument must be a LTI model"); + error ("gram: first argument must be an LTI model"); endif [a, b, c] = ssdata (sys); Modified: trunk/octave-forge/main/control/inst/h2syn.m =================================================================== --- trunk/octave-forge/main/control/inst/h2syn.m 2010-09-15 11:10:55 UTC (rev 7728) +++ trunk/octave-forge/main/control/inst/h2syn.m 2010-09-15 11:20:24 UTC (rev 7729) @@ -81,7 +81,7 @@ endif if (! isa (P, "lti")) - error ("h2syn: first argument must be a LTI system"); + error ("h2syn: first argument must be an LTI system"); endif if (! isscalar (nmeas) || ! isnumeric (nmeas) || isempty (nmeas)) Modified: trunk/octave-forge/main/control/inst/hinfsyn.m =================================================================== --- trunk/octave-forge/main/control/inst/hinfsyn.m 2010-09-15 11:10:55 UTC (rev 7728) +++ trunk/octave-forge/main/control/inst/hinfsyn.m 2010-09-15 11:20:24 UTC (rev 7729) @@ -87,7 +87,7 @@ endif if (! isa (P, "lti")) - error ("hinfsyn: first argument must be a LTI system"); + error ("hinfsyn: first argument must be an LTI system"); endif if (! isscalar (nmeas) || ! isnumeric (nmeas) || isempty (nmeas)) Modified: trunk/octave-forge/main/control/inst/hsvd.m =================================================================== --- trunk/octave-forge/main/control/inst/hsvd.m 2010-09-15 11:10:55 UTC (rev 7728) +++ trunk/octave-forge/main/control/inst/hsvd.m 2010-09-15 11:20:24 UTC (rev 7729) @@ -18,7 +18,7 @@ ## -*- texinfo -*- ## @deftypefn{Function File} {@var{hsv} =} hsvd (@var{sys}) ## @deftypefnx{Function File} {@var{hsv} =} hsvd (@var{sys}, @var{"offset"}, @var{alpha}) -## Hankel singular values of the stable part of a LTI model. If no output arguments are +## Hankel singular values of the stable part of an LTI model. If no output arguments are ## given, the Hankel singular values are displayed in a plot. ## Uses SLICOT AB13AD by courtesy of NICONET e.V. ## <http://www.slicot.org> @@ -35,7 +35,7 @@ endif if (! isa (sys, "lti")) - error ("hsvd: first argument must be a LTI system"); + error ("hsvd: first argument must be an LTI system"); endif if (! strcmp (tolower (prop(1)), "o")) Modified: trunk/octave-forge/main/control/inst/margin.m =================================================================== --- trunk/octave-forge/main/control/inst/margin.m 2010-09-15 11:10:55 UTC (rev 7728) +++ trunk/octave-forge/main/control/inst/margin.m 2010-09-15 11:20:24 UTC (rev 7729) @@ -131,7 +131,7 @@ endif if (! isa (sys, "lti")) - error ("margin: argument sys must be a LTI system"); + error ("margin: argument sys must be an LTI system"); endif if (! issiso (sys)) Modified: trunk/octave-forge/main/control/inst/pzmap.m =================================================================== --- trunk/octave-forge/main/control/inst/pzmap.m 2010-09-15 11:10:55 UTC (rev 7728) +++ trunk/octave-forge/main/control/inst/pzmap.m 2010-09-15 11:20:24 UTC (rev 7729) @@ -18,7 +18,7 @@ ## -*- texinfo -*- ## @deftypefn {Function File} pzmap (@var{sys}) ## @deftypefnx {Function File} {[@var{p}, @var{z}] =} pzmap (@var{sys}) -## Plot the poles and zeros of a LTI system in the complex plane. +## Plot the poles and zeros of an LTI system in the complex plane. ## @end deftypefn ## Author: Lukas Reichlin <luk...@gm...> @@ -35,7 +35,7 @@ endif if (! isa (sys, "lti")) - error ("pzmap: argument must be a LTI system"); + error ("pzmap: argument must be an LTI system"); endif pol = pole (sys); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |