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

📄 ekf_sine_f.m

📁 documentation for optimal filtering toolbox for mathematical software package Matlab. The methods i
💻 M
字号:
% Dynamical 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 x_n = ekf_sine_f(x,param)    dt = param(1);    A = [1 dt 0;0 1 0;0 0 1];    x_n = A*x(1:3,:);    if size(x,1) == 7 || size(x,1) == 6        x_n(1:3,:) = x_n(1:3,:) + x(4:6,:);    end    

⌨️ 快捷键说明

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