将人口传递给遗传算法

时间:2017-04-07 06:43:52

标签: r genetic-algorithm

我已开始在GA中学习R

鉴于我有以下功能:

f <- function(x)  (x^2+x)*cos(x)
min <- -10; max <- 10
curve(f, min, max, n = 1000)

我知道,我可以使用以下代码调用GA:

library(GA)

GA <- ga(type = "real-valued", fitness = f, min = min, max = max,monitor =FALSE)

summary(GA)

但现在,我想知道我是否可以传递包含 300 值的向量,询问GA 随机选择 100 了所有人口(300)?

点:我已阅读ga_lrSelection,但我不知道如何使用它们

0 个答案:

没有答案