?? ekf_sine_d2h_dx2.m
字號:
% Hessian of the measurement model function in 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 df = ekf_sine_d2h_dx2(x,param)f = x(1);a = x(3);df = zeros(1,3,3);df(1,:,:) = [-a*sin(f) 0 cos(f); 0 0 0; cos(f) 0 0];
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -