From: <par...@us...> - 2010-09-08 01:09:36
|
Revision: 7681 http://octave.svn.sourceforge.net/octave/?rev=7681&view=rev Author: paramaniac Date: 2010-09-08 01:09:30 +0000 (Wed, 08 Sep 2010) Log Message: ----------- control: style cosmetics Modified Paths: -------------- trunk/octave-forge/main/control/inst/h2syn.m trunk/octave-forge/main/control/inst/hinfsyn.m Modified: trunk/octave-forge/main/control/inst/h2syn.m =================================================================== --- trunk/octave-forge/main/control/inst/h2syn.m 2010-09-07 23:48:21 UTC (rev 7680) +++ trunk/octave-forge/main/control/inst/h2syn.m 2010-09-08 01:09:30 UTC (rev 7681) @@ -108,11 +108,11 @@ d(1:p1, 1:m1) = 0; endif - if (! isstabilizable (P(:, m1+1 : m))) + if (! isstabilizable (P(:, m1+1:m))) error ("h2syn: (A, B2) must be stabilizable"); endif - if (! isdetectable (P(p1+1 : p, :))) + if (! isdetectable (P(p1+1:p, :))) error ("h2syn: (C2, A) must be detectable"); endif Modified: trunk/octave-forge/main/control/inst/hinfsyn.m =================================================================== --- trunk/octave-forge/main/control/inst/hinfsyn.m 2010-09-07 23:48:21 UTC (rev 7680) +++ trunk/octave-forge/main/control/inst/hinfsyn.m 2010-09-08 01:09:30 UTC (rev 7681) @@ -111,11 +111,11 @@ m1 = m - ncon; p1 = p - nmeas; - if (! isstabilizable (P(:, m1+1 : m))) + if (! isstabilizable (P(:, m1+1:m))) error ("hinfsyn: (A, B2) must be stabilizable"); endif - if (! isdetectable (P(p1+1 : p, :))) + if (! isdetectable (P(p1+1:p, :))) error ("hinfsyn: (C2, A) must be detectable"); endif This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |