3 % Toolbox for nonlinear filtering.
\r
4 % Copyright (C) 2005 Jakob Rosén <jakob.rosen@gmail.com>
\r
6 % This program is free software; you can redistribute it and/or
\r
7 % modify it under the terms of the GNU General Public License
\r
8 % as published by the Free Software Foundation; either version 2
\r
9 % of the License, or (at your option) any later version.
\r
11 % This program is distributed in the hope that it will be useful,
\r
12 % but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
13 % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
14 % GNU General Public License for more details.
\r
16 % You should have received a copy of the GNU General Public License
\r
17 % along with this program; if not, write to the Free Software
\r
18 % Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
\r
21 handles=guidata(hf);
\r
23 handles.xhat=randn(3,100);
\r
24 handles.xpred=rand(3,100);
\r
25 handles.xtrue=ones(3,100);
\r
29 filtobj.model.xvars={'x1','x2','x3'};
\r
30 filtobj.Ts=0:size(handles.xhat,2)-1;
\r
31 handles.filtobj=filtobj;
\r
33 guidata(hf,handles);
\r
35 pfgui_export('init',hf);
\r