我想在matlab中使用遗传算法。我有一个矩阵作为人口。 如何在Matlab的ga函数中使用特定矩阵作为总体输入?
答案 0 :(得分:0)
使用gaoptimset
设置'InitialPopulation'
字段,并将结果作为ga
参数传递给options
示例:
pop = {rand(n,m)} %// The {} might not be necessary.
options = gaoptimset('InitialPopulation',pop);
x = ga(....., options)