f0.periodtuningpp24 {evoper} | R Documentation |
This function is an example on how EvoPER can be used for estimating the parameter values in order to produce oscilations with the desired period.
f0.periodtuningpp24(x1, x2, x3, x4)
x1 |
The growth rate of prey |
x2 |
The decay rate of predator |
x3 |
The predating effect on prey |
x4 |
The predating effecto on predator |
The solution fitness cost
## Not run:
rm(list=ls())
set.seed(-27262565)
f<- PlainFunction$new(f0.periodtuningpp24)
f$Parameter(name="x1",min=0.5,max=2)
f$Parameter(name="x2",min=0.5,max=2)
f$Parameter(name="x3",min=0.5,max=2)
f$Parameter(name="x4",min=0.5,max=2)
extremize("pso", f)
## End(Not run)