代码搜索:setup
找到约 10,000 项符合「setup」的源代码
代码结果 10,000
www.eeworm.com/read/431224/8696976
m setup.m
function a = setup(a)
global Bus
if isempty(a.con), return, end
a.n = length(a.con(:,1));
ncol = length(a.con(1,:));
switch ncol
case 19
a.con = [a.con,zeros(a.n,2),ones(a.n,2),zeros(a.n,4)];
www.eeworm.com/read/431224/8697075
m setup.m
function a = setup(a)
global Syn Bus
if isempty(a.con), return, end
a.n = length(a.con(:,1));
a.syn = a.con(:,1);
a.bus = getbus(Syn,a.syn);
a.vbus = a.bus + Bus.n;
if length(a.con(1,:)) < a.ncol
www.eeworm.com/read/431224/8697148
m setup.m
function a = setup(a)
global Bus
if isempty(a.con), return, end
a.n = length(a.con(:,1));
a.bus = getint(Bus,a.con(:,1));
nsup = length(a.con(1,:));
if nsup < 14,
a.con = [a.con, zeros(a.n,14-ns
www.eeworm.com/read/431224/8697204
m setup.m
function a = setup(a)
global Bus
if isempty(a.con), return, end
a.n = length(a.con(:,1));
a.type = a.con(:,3);
a.idx = a.con(:,1);
idx = find(a.type == 1); % voltage control
if ~isempty(idx)
a.i
www.eeworm.com/read/431224/8697320
m setup.m
function a = setup(a)
global Demand
if isempty(a.con), return, end
a.n = length(a.con(:,1));
a.dem = round(a.con(:,1));
a.bus = Demand.bus(a.dem);
if length(a.con(1,:)) < a.ncol
a.con(:,a.ncol) =
www.eeworm.com/read/287284/8697325
lst setup.lst
[Bootstrap]
SetupTitle=安装
SetupText=正在复制文件,请等待。
CabFile=STC-IS1.CAB
Spawn=Setup1.exe
Uninstal=st6unst.exe
TmpDir=msftqws.pdw
Cabs=2
[Bootstrap Files]
File1=@VB6STKIT.DLL,$(WinSysPathSysFile
www.eeworm.com/read/287284/8697389
exe setup.exe
www.eeworm.com/read/287284/8697396
lst setup.lst
[Bootstrap]
SetupTitle=安装
SetupText=正在复制文件,请等待。
CabFile=CAN实验.CAB
Spawn=Setup1.exe
Uninstal=st6unst.exe
TmpDir=msftqws.pdw
Cabs=1
[Bootstrap Files]
File1=@VB6STKIT.DLL,$(WinSysPathSysFile),
www.eeworm.com/read/287284/8697397
exe setup.exe
www.eeworm.com/read/431224/8697496
m setup.m
function a = setup(a,varargin)
switch nargin
case 2
Bus = varargin{1};
otherwise
global Bus
end
if isempty(a.con), return, end
a.n = length(a.con(:,1));
[a.bus,a.vbus] = getbus(Bus,a.con(:,1)