代码搜索:Matlab;trainning
找到约 10,000 项符合「Matlab;trainning」的源代码
代码结果 10,000
www.eeworm.com/read/450287/7486146
txt matlab.txt
% 本程序主要用来计算根据灰色理论建立的模型的预测值。
% 应用的数学模型是 GM(1,1)。
% 原始数据的处理方法是一次累加法。
%y=input('请输入数据 ');
n=length(y);
yy=ones(n,1);
yy(1)=y(1);
for i=2:n
yy(i)=yy(i-1)+y(i);
end
B=ones(n-1,2);
for i=1:(n
www.eeworm.com/read/448411/7533778
mat matlab.mat
www.eeworm.com/read/448259/7535692
mat matlab.mat
www.eeworm.com/read/448055/7541025
doc matlab.doc
www.eeworm.com/read/448051/7541029
txt matlab.txt
www.eeworm.com/read/447027/7560107
docx matlab.docx
www.eeworm.com/read/446759/7565568
c matlab.c
/**************************************************************************
**
** Copyright (C) 1993 David E. Steward & Zbigniew Leyk, all rights reserved.
**
** Meschach Library
**
**
www.eeworm.com/read/446759/7565569
h matlab.h
/**************************************************************************
**
** Copyright (C) 1993 David E. Steward & Zbigniew Leyk, all rights reserved.
**
** Meschach Library
**
**
www.eeworm.com/read/443958/7619869
txt matlab.txt
%程序1
function xoverKids = crossoverpmx(parents,options,GenomeLength,FitnessFcn,unused,thisPopulation)
nKids = length(parents);
xoverKids = zeros(nKids,GenomeLength);
index = 1;
for i=1:fix(nKids/
www.eeworm.com/read/442339/7654701