subsref.m

来自「剑桥大学用于线性和双线性动力学系统辨识的工具箱」· M 代码 · 共 35 行

M
35
字号
function out = subsref(model,s)%BILIN/SUBSREF   Subscript referencing method for BILIN object.%% CUED System Identification Toolbox.% Cambridge University Engineering Department.% Copyright (C) 1998-2002. All Rights Reserved.% Version 1.00, Date: 01/06/2002% Created by H. Chen and E.C. Kerrigan.switch s.type case '.'  switch upper(s.subs)   case 'A'	out = model.A;   case 'B'	out = model.B;   case 'C'	out = model.C;   case 'D'	out = model.D;   case 'N'	out = model.N;   case {'X0','X'}	out = model.X0;   case {'TS','T'}	out = model.Ts;   otherwise	error('Invalid subscript referencing.')  end otherwise  error('Invalid subscript referencing.')end% *** last line of subsref.m ***

⌨️ 快捷键说明

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