nfeval.m
来自「介绍了几个基于EKF扩展卡尔曼滤波的例子」· M 代码 · 共 19 行
M
19 行
function [functionValue] = nfeval(p,point)% NFEVAL - evaluating the function of the nffunction object p%% p ... object of the class nfExampleFunction% point ... vector value at whitch is the function evaluated%% Nonlinear Filtering Toolbox version 2.0rc1% Copyright (c) 1995 - 2006 NFT developement Team,% Department of Cybernetics,% University of West Bohemia in Pilsenif length(point) ~= p.nvar error('Wrong number of input arguments'); else % return value of the function functionValue = [point(1)*point(2)+point(3); point(2)+point(4)];end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?