subsref.m

来自「用于电力系统的一个很好的分析软件」· M 代码 · 共 58 行

M
58
字号
function b = subsref(a,index)switch index(1).type case '.'  switch index(1).subs   case 'con'    if length(index) == 2      b = a.con(index(2).subs{:});    else      b = a.con;    end   case 'u'    if length(index) == 2      b = a.u(index(2).subs{:});    else      b = a.u;    end   case 'v0'    if length(index) == 2      b = a.v0(index(2).subs{:});    else      b = a.v0;    end   case 'pref'    if length(index) == 2      b = a.pref(index(2).subs{:});    else      b = a.pref;    end   case 'bus1'    b = a.bus1;   case 'bus2'    b = a.bus2;   case 'line'    b = a.line;   case 'n'    b = a.n;   case 'y'    b = a.y;   case 'xcs'    b = a.xcs;   case 'Pref'    b = a.Pref;   case 'V0'    b = a.V0;   case 'vcs'    b = a.vcs;   case 'vpi'    b = a.vpi;   case 'store'    b = a.store;   case 'ncol'    b = a.ncol;   case 'format'    b = a.format;  endend

⌨️ 快捷键说明

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