代码搜索:initial
找到约 10,000 项符合「initial」的源代码
代码结果 10,000
www.eeworm.com/read/442827/7644280
m initial_param.m
%程序初始化
% flag=1:Spherical函数,表达式为f(x1,x2)=x1^2+x2^2
% flag=2:Rosenbrock函数,表达式为f(x1,x2)=100*(x1^2-x2)^2+(1-x1)^2
% flag=3:Shaffer'sf6函数,表达式为f(x1,x2)=(sin(sqrt(x1^2+x2^2))^2-0.5)/((0.001*(x1^2+x2^2)
www.eeworm.com/read/440983/7678264
asv initial_genetic.asv
function population=initial_genetic(range_min,range_max,count_population)
step=(range_max-range_min)/(count_population);
populaiton=range_min:step:range_max;
% population1=range_min+round(rand(
www.eeworm.com/read/437982/7737997
m initial_track.m
% modeling data
% sample number N=200 points
% sample time T=0.1s
t=0:0.1:20-0.1;
T=0.1; % sample time
v=0.5; % initial velocity
y=ones(1,200);
y(1)=0;
for n=2:200;
www.eeworm.com/read/437982/7737999