注册 登录
编程论坛 Delphi论坛

循环迭代程序 数据文件的读写~

泪光缘 发布于 2007-05-09 09:33, 786 次点击
c1:=2.0;
c2:=2.0;
w:=0.5;
v_max=100;

var temp,temp_p,ran:=real;
position:=array[0..dim] of real;
pi_min:=array[0..dim] of real;
pg_min:=array[0..dim] of real;
begin
position[0]:=-50.2;
position[1]:=60.0;
pi_min[0]:=100;
pi_min[1]:=100;
pg_min[0]:=0;
pg_min[1]:=0;
temp:=0;temp_p:=0

randomsize;
ran:=random(50);

for i to dim do
begin
for k to ran do
temp:=w*position[i]+c1*ran*(pi_min[i]-position[i])+c2*ran*(pg_min[i]-position[i]);
if temp>v_max then v_max:=temp;
if temp<-v_max then v_max:=temp;


temp_p:=temp+position;
if temp>v_max then v_max:=temp;
if temp<-v_max then v_max:=temp;

end;
end;

1 回复
#2
泪光缘2007-05-09 09:35
回复:(泪光缘)循环迭代程序 数据文件的读写~
高手帮我看看我编的程序对不对阿~
如果我想把我的每次循环迭代的数据都保存在一个.txt文件中
应该怎样编阿!~
1