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

📄 subsref.m

📁 HERE IS A GOOD PSO TOOL BOX
💻 M
字号:
function B = subsref(A,S)% GPVAR/SUBSREF method for GP variable objects.%switch length(S) % number of subscripting levels  % one subscripting level  case 1    switch S.type      case '.'        switch S.subs          case 'label'            B = A.label;          otherwise            error('GP variable (gpvar) indexation error.');        end      case '()'        B = A(S.subs{:});      otherwise        error(['GP variable indexation with ' S.type ' is not supported.']);    end  % two subscripting levels  case 2     if ( strcmp(S(1).type,'()') && strcmp(S(2).type,'.') )      B = A(S(1).subs{:}).label;    end  otherwise    error('GP variable indexation with this many levels is not allowed.');end 

⌨️ 快捷键说明

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