代码搜索:
找到约 10,000 项符合「」的源代码
代码结果 10,000
www.eeworm.com/read/392192/8358706
m rws.m
function In=Rws(fitness)
m=length(fitness);
fitness=fitness./sum(fitness);
fitness=cumsum(fitness);
In=zeros(size(fitness));
for i=1:m
r=rand;
for j=1:m
if r
www.eeworm.com/read/292398/8358707
dat errortc128.dat
错误信息: xxx statement missing ;
中文注释: xxx 语句缺少分号
www.eeworm.com/read/392192/8358710
m qcomporationselect.m
function GI=QComporationSelect(Fit)
m=length(Fit);
q=floor(0.7*m);
r = randperm(m);
r = r(1:q);
p = zeros(m,1);
for i=1:m
%for j=1:q
%if Fit(i)>Fit(r(j)), p(i)=p(i)+1; end
www.eeworm.com/read/192685/8358711
html 17315.html
Re: 如何呼叫其他套装软体并在其中执行一些批次功能后再取回控制?
Re: 如何呼叫其他套装软体并在其中执行一些批次功能后再取回控制?
www.eeworm.com/read/392192/8358713
m urealcross.m
function x=URealCross(x,Pc)
[m,n]=size(x);
x1=x(1:m/2,:);
x2=x(m/2+1:end,:);
a=0.3;
r=rand(m,1)
www.eeworm.com/read/392192/8358715
m example1.m
a=[1 2 3;4 5 6;7 8 9];
b=1:2:10;
x=-pi:0.1:pi;
x=linspace(-pi,pi,100);
plot(x,sin(x))
zeros(3,3)
ones(3,3)
eye(3,3)
rand(3,3)
randn(3,3)
a=rand(3,3);
b=rand(3,3);
c=a+b
c=a*b
c=a.*b
c