|
Q1.
% O0 ]- r8 n* y' g我的疑问是第四章中,用来做进行适应度评估的Function函数
l% `8 v1 l& \3 |9 ^4 v9 H1 [# ]其中,事先给出的工位指数(StationIndex)=sum(cycleTime-stationTime)/(number of Stations), V- ~3 Q5 a: i$ ?
但是在function函数中,书中给出了
7 V' P1 B; ^; I6 Efor i:=1 to Stations loop
) J& i! K, W5 W( N0 c; c0 Bmu:=cycletime-procstation[2,i];- -cycletime减去一个工作站中作业任务总时间;% s" N% t N* P* K" v
stationIndex:=StationIndex+Mu;--这个也能理解
, L& C( J Y7 j) zsigma:=Mu*Mu;--这个用来求平衡指数的,也能理解
6 o6 t" R9 h6 t& FStationIndex:=stationIndex+Mu;--这里就不是很清楚了,为什么又要加上这一句呢?这个不会跟上面那句重复了吗?2 ?+ Q, F" c9 _! ^+ R6 F% x7 b
SmoothIndex:=smoothIndex+sigma;
' z9 w L8 j2 ^* H( G vnext;! w, [0 }6 m* O% S3 p2 A) D
StationIndex:=stationIndex/Stations;0 T/ q2 V; J! h7 N1 u% t3 ^
SmoothIndex:=sqrt(SmoothIndex/Stations);1 }$ W9 ]8 D* G A! \ I
5 T+ r9 ] O) m$ \( Y w1 n
Q2:8 ^5 ]0 E/ C% a( C( A; V
同时,本章中由于用的GAoptimization,给出的结果直接就复制到了tablefile中了。。
5 G3 w* D1 `5 H7 |$ ]9 O如果我想得到GA算法中一个收敛情况,那该如何来得到呢?
0 G% \ \# B' X* t1 ]$ I将每次的子代复制到一个tablefile中,然后导入到Excel中,然后使用Matlab来处理?
! K. Y. X% R4 d3 Y! W& L) t有没有可以直接在plant中显示的方法呢? |
|