From: <sla...@us...> - 2009-02-11 21:02:30
|
Revision: 5556 http://octave.svn.sourceforge.net/octave/?rev=5556&view=rev Author: slackydeb Date: 2009-02-11 21:02:23 +0000 (Wed, 11 Feb 2009) Log Message: ----------- Little optimization fix in balreal.m. Add myself as mantainer. Bump version number and last update date in DESCRIPTION. Modified Paths: -------------- trunk/octave-forge/main/control/DESCRIPTION trunk/octave-forge/main/control/inst/balreal.m Modified: trunk/octave-forge/main/control/DESCRIPTION =================================================================== --- trunk/octave-forge/main/control/DESCRIPTION 2009-02-11 02:51:44 UTC (rev 5555) +++ trunk/octave-forge/main/control/DESCRIPTION 2009-02-11 21:02:23 UTC (rev 5556) @@ -1,8 +1,8 @@ Name: Control -Version: 1.0.9 -Date: 2008-08-23 +Version: 1.0.10 +Date: 2009-02-11 Author: Ben Sapp -Maintainer: None +Maintainer: Luca Favatella <sla...@gm...> Title: Control. Description: Additional Octave Control tools Depends: octave (>= 2.9.7) Modified: trunk/octave-forge/main/control/inst/balreal.m =================================================================== --- trunk/octave-forge/main/control/inst/balreal.m 2009-02-11 02:51:44 UTC (rev 5555) +++ trunk/octave-forge/main/control/inst/balreal.m 2009-02-11 21:02:23 UTC (rev 5556) @@ -1,4 +1,4 @@ -## Copyright (C) 2008 Luca Favatella <sla...@gm...> +## Copyright (C) 2008, 2009 Luca Favatella <sla...@gm...> ## ## ## This program is free software; you can redistribute it and/or modify it @@ -42,7 +42,7 @@ ## @end deftypefn ## Author: Luca Favatella <sla...@gm...> -## Version: 0.2.4 +## Version: 0.2.5 # TODO # improve continuous-time system test @@ -104,8 +104,8 @@ assert (Wo2bal, Sigma, ASSERT_TOL); ## DEBUG ## T and Ti - T = inv (T1 * T2); - Ti = inv (T); + Ti = T1 * T2; + T = inv (Ti); endif endfunction This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |