ekf_sine_h.m

来自「EKF滤波 扩展kalman 滤波的matlab学习程序,特点是简单,能够设置」· M 代码 · 共 17 行

M
17
字号
% Measurement model function for the random sine signal demo% Copyright (C) 2007 Jouni Hartikainen%% This software is distributed under the GNU General Public % Licence (version 2 or later); please refer to the file % Licence.txt, included with the software, for details.function Y = ekf_sine_h(x,param)   f = x(1,:);   a = x(3,:);   Y = a.*sin(f);   if size(x,1) == 7      Y = Y + x(7,:);   end

⌨️ 快捷键说明

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