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

📄 subsref.m

📁 介绍了几个基于EKF扩展卡尔曼滤波的例子
💻 M
字号:
function val = subsref(p,prop)% nfPredatorPrayModel/subsref%% Nonlinear Filtering Toolbox version 2.0rc1% Copyright (c) 1995 - 2006 NFT developement Team,%              Department of Cybernetics,%              University of West Bohemia in Pilsenswitch prop.type    case '()'        error('This type of referencing is not implemented!');    case '.'        switch prop.subs            case 'u'                if p.nu == 0                    val = {};                else                    val = {'input'};                end            case 'x'                if p.nx == 0                    val = {};                else                    val = {'state'};                end            case 'xi'                if p.nxi == 0                    val = {};                else                    val = {'noise'};                end            otherwise                val = subsref(p.nfFunction,prop);        end    case '{}'        error('This type of referencing is not implemented!');end% CHANGELOG

⌨️ 快捷键说明

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