中文说明:遗传算法 ( Genetic Algorithm , GA) 是借鉴生物界自然选择和群体进化机制形成的一种全局寻优算法 。与传统的优化算法相比 ,遗传算法具有如下优点 [1 ] :1 ) 不是从单个点 ,而是从多个点构成的群体开始搜索 ;2) 在搜索最优解过程中 ,只需要由目标函数值转换得来的适应值信息 ,而不需要导数等其它辅助信息 ;3) 搜索过程不易陷入局部最优点 。数学建模中常用的matlab算法,遗传算法,内容详细,包括PDF版本的详细的算法实现过程;
English Description:
GA - genetic algorithm is a global optimization algorithm, which boats many advanteges than the traditional ones, A: search from multiple points, rathter than a single pointB:Only the adoptive value converted from the target function is needed in the searching processC: Searching process is less likely to stuck at the local optimized pointIn modeling, the matlab algorthm is often used.