📄 getflowmax.m
字号:
function out = getflowmax(a,type)global Settingsout = [];if ~a.n, return, endswitch type case {'imax',1} out = a.con(:,13); case {'pmax',2} out = a.con(:,14); case {'smax',3} out = a.con(:,15);endidx = find(out <= 0);if ~isempty(idx) out(idx) = 1e6*Settings.mva;end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -