subsref.m

来自「电力系统分析计算程序」· M 代码 · 共 46 行

M
46
字号
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 'bus'    b = a.bus;   case 'n'    b = a.n;   case 'store'    b = a.store;   case 'P0'    if length(index) == 2      b = a.P0(index(2).subs{:});    else      b = a.P0;    end   case 'Q0'    if length(index) == 2      b = a.Q0(index(2).subs{:});    else      b = a.Q0;    end   case 'gen'    b = a.gen;   case 'shunt'    b = a.shunt;   case 'ncol'    b = a.ncol;   case 'format'    b = a.format;  endend

⌨️ 快捷键说明

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