findpos.m

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

M
24
字号
function idx = findpos(a)global CPFidx = [];if ~a.n, return, endif CPF.onlypqgen  idx = find(a.u & a.gen);  if isempty(idx)    fm_disp('No PQ generator found. Expect meaningless results.')  endelseif CPF.onlynegload  idx = find(a.u.*a.con(:,4) < 0);  if isempty(idx)    fm_disp('No negative load found. Expect meaningless results.')  endelseif CPF.negload  idx = find(a.u);else  idx = find(a.u.*a.con(:,4) >= 0);end

⌨️ 快捷键说明

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