BurStMisc (version 1.1)

summary.genopt: Summary of genopt object

Description

The call, best solution and summary of objectives in the final population.

Usage

"summary"(object, ...)

Arguments

object
the result of a call to genopt.
...
currently unused.

Value

a list with components: a list with components:

See Also

genopt.

Examples

Run this code
  # two parameters, population size 5
  go1 <- genopt(function(x, other) sum(x, other),
                population=matrix(rexp(10), nrow=2, ncol=5),
                lower=0, add.arg=list(other=3), trace=FALSE)
  summary(go1)

Run the code above in your browser using DataCamp Workspace