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

📄 findpos.m

📁 电力系统分析计算程序
💻 M
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -