changeset 6703:f6c72e1e2461 octave-forge

control-oo: add missing semicolon
author paramaniac
date Sun, 14 Feb 2010 18:18:44 +0000
parents b8c34004fa45
children bc27c72f5bf7
files extra/control-oo/inst/kalman.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/extra/control-oo/inst/kalman.m	Sun Feb 14 16:53:38 2010 +0000
+++ b/extra/control-oo/inst/kalman.m	Sun Feb 14 18:18:44 2010 +0000
@@ -90,7 +90,7 @@
 
   if (isempty (s))
     rbar = r + h*q*h';
-    sbar = g * q*h'
+    sbar = g * q*h';
   else
     rbar = r + h*s + s'*h' + h*q*h'; 
     sbar = g * (q*h' + s);