📄 nfeval.m
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -