|
Q1.6 v5 y6 B7 s2 T6 s6 x1 h
我的疑问是第四章中,用来做进行适应度评估的Function函数
/ V0 C; X, K/ m# p$ q9 z" l其中,事先给出的工位指数(StationIndex)=sum(cycleTime-stationTime)/(number of Stations)9 k; ]1 v: f- g3 x1 P
但是在function函数中,书中给出了1 H$ [6 Y3 N" t% H- T3 S% Q
for i:=1 to Stations loop( J: A# u( y0 t
mu:=cycletime-procstation[2,i];- -cycletime减去一个工作站中作业任务总时间;
+ c6 r0 P% A- W) b5 e7 W, K/ |stationIndex:=StationIndex+Mu;--这个也能理解
& q. t% d3 h, o7 i9 l0 rsigma:=Mu*Mu;--这个用来求平衡指数的,也能理解6 y7 N$ Y# y, Y% s, t( B( \
StationIndex:=stationIndex+Mu;--这里就不是很清楚了,为什么又要加上这一句呢?这个不会跟上面那句重复了吗?
, L* F/ f4 E) X" G2 ?SmoothIndex:=smoothIndex+sigma;4 }& K) r& N" j6 U* ^
next;# |2 h$ H6 k6 p1 |! G
StationIndex:=stationIndex/Stations;
! _6 t/ ^8 N! z. z* ]) ]SmoothIndex:=sqrt(SmoothIndex/Stations);) ?! _5 l, ~1 | O& n
) Z' \6 }7 H) u7 U
Q2:$ d' J! K9 V. e
同时,本章中由于用的GAoptimization,给出的结果直接就复制到了tablefile中了。。8 Y U1 R- {$ r: G+ M
如果我想得到GA算法中一个收敛情况,那该如何来得到呢?4 K& g4 @ V' R: R
将每次的子代复制到一个tablefile中,然后导入到Excel中,然后使用Matlab来处理?9 b8 u* c+ H8 m( [0 a! }3 O0 |
有没有可以直接在plant中显示的方法呢? |
|