⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 reset.m

📁 particle filter 粒子滤波器 matlab工具箱
💻 M
字号:
function objout=reset(obj,varargin)
% Resets the Extended Kalman Filter (EKF).
% When this function is called, the filter forgets all previous information about
% the states.
%
% Syntax: (* = optional)
%
% obj* = reset(obj, t*);
%
% In arguments:
%
% 1. obj
%	The filter object to reset.
% 2* t
%	Sets the time property t to the given value.
% 2* []
%	If the object contains sample point data Ts, t will be set to Ts(1). If not, the
%	stored t property will not be altered by the reset.
%
% Out arguments:
%
% 1* obj
%	The reset filter object.
%       If no output argument is specified, the input object in the caller's workspace
%	will be modified.

% Toolbox for nonlinear filtering.
% Copyright (C) 2005  Jakob Ros閚 <jakob.rosen@gmail.com>
%
% This program is free software; you can redistribute it and/or
% modify it under the terms of the GNU General Public License
% as published by the Free Software Foundation; either version 2
% of the License, or (at your option) any later version.
%
% This program is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with this program; if not, write to the Free Software
% Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.

if nargin>1
	obj.t=varargin{1};
elseif length(obj.Ts)
        obj.t=obj.Ts(1);
end
model=obj.model;
obj.xpred=calc_x0(model,1);		% Calculate x0
obj.Ppred=get(model,'P0');		% Copy P0 from the model

if nargout==0
	% No output variable was specified by the user.
	% We'll do the assignment manually in the caller's workspace.
	objname = inputname(1);
	assignin('caller',objname,obj)
else
	objout=obj;
end;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -