代码搜索:setup
找到约 10,000 项符合「setup」的源代码
代码结果 10,000
www.eeworm.com/read/431224/8694819
m setup.m
function a = setup(a)
global Bus
if isempty(a.con), return, end
a.n = length(a.con(:,1));
[a.bus,a.vbus] = getbus(Bus,a.con(:,1));
if length(a.con(1,:)) < a.ncol
a.u = ones(a.n,1);
else
a.u =
www.eeworm.com/read/431224/8694890
m setup.m
function a = setup(a)
global Bus
if isempty(a.con), return, end
a.n = length(a.con(:,1));
[a.bus,a.vbus] = getbus(Bus,a.con(:,1));
a.wind = round(a.con(:,2));
a.dat = zeros(a.n,11);
if length(a.co
www.eeworm.com/read/431224/8694961
m setup.m
function a = setup(a)
global Exc Svc Cac
if isempty(a.con), return, end
a.n = length(a.con(:,1));
a.exc = find(a.con(:,3) == 1);
a.svc = find(a.con(:,3) == 2);
a.syn = Exc.syn(a.con(a.exc,2));
if
www.eeworm.com/read/431224/8695059
m setup.m
function a = setup(a)
global Bus
if isempty(a.con), return, end
a.n = length(a.con(:,1));
[a.bus,a.vbus] = getbus(Bus,a.con(:,1));
a.store = a.con;
if length(a.con(1,:)) < a.ncol
a.u = ones(a.n,
www.eeworm.com/read/431224/8695140
m setup.m
function a = setup(a)
global Bus
if isempty(a.con), return, end
a.n = length(a.con(:,1));
[a.bus,a.vbus] = getbus(Bus,a.con(:,1));
if length(a.con(1,:)) < a.ncol
a.u = ones(a.n,1);
else
a.u =
www.eeworm.com/read/431224/8695204
m setup.m
function a = setup(a)
global Bus Settings
if isempty(a.con), return, end
a.n = length(a.con(:,1));
[a.bus1,a.v1] = getbus(Bus,a.con(:,1));
[a.bus2,a.v2] = getbus(Bus,a.con(:,2));
% Data Structure
www.eeworm.com/read/431224/8695269
m setup.m
function a = setup(a)
global Bus
if isempty(a.con), return, end
a.n = length(a.con(:,1));
[a.bus,a.vbus] = getbus(Bus,a.con(:,1));
if length(a.con(1,:)) < a.ncol
a.u = ones(a.n,1);
else
a.u =
www.eeworm.com/read/431224/8695334
m setup.m
function a = setup(a)
global Line Bus
if isempty(a.con), return, end
a.n = length(a.con(:,1));
a.line = a.con(:,1);
a.Cp = a.con(:,6)./100;
if length(a.con(1,:)) < a.ncol
a.u = ones(a.n,1);
else
www.eeworm.com/read/431224/8695388
m setup.m
function a = setup(a)
global Bus Syn Exc
if isempty(a.con), return, end
a.n = length(a.con(:,1));
a.exc = a.con(:,1);
a.syn = Exc.syn(a.exc);
a.bus = getbus(Syn,a.syn);
a.vbus= a.bus + Bus.n;
a.sto
www.eeworm.com/read/431224/8695506
m setup.m
function a = setup(a)
global Bus
if isempty(a.con), return, end
a.n = length(a.con(:,1));
[a.bus,a.vbus] = getbus(Bus,a.con(:,1));
if length(a.con(1,:)) < a.ncol
a.con(:,a.ncol) = ones(a.n,1);
en