func.ert: Create an ERT Function

Description Usage Arguments Value

Description

Create an Expected Running Time (ERT) function, i.e., a list with two membery x and y that stand for the coordinates of the function.

Usage

1
2
3
4
func.ert(x, goal.dim = 2L, time.dim = 1L, comparator = `<=`,
  time.type = as.integer, goal.type = as.numeric,
  goal.min = goal.type(NA), goal.max = goal.type(NA),
  time.max = time.type(NA), extract.run = identity)

Arguments

x

the data, maybe a list of matrices or a list of vectors/lists, where each element has at least the goal.dim and time.dim dimension.

goal.dim

the dimension where where the goal values can be found

time.dim

the dimension where the time values can be found

comparator

the comparator, usually `<=` or `>=`

time.type

the type function the time dimension, should be as.integer or as.numeric

goal.type

the type function the goal dimension, should be as.integer or as.numeric

goal.min

the minimum goal value to use, or NA to use the minimal occuring value

goal.max

the maximum goal value to use, or NA to use the maximally occuring one

time.max

the maximum time value to be used, or NA to pick the maximum time value of each run separately

extract.run

a function which can be used to extract the single runs from x, e.g., identity

Value

a list(x=c(...), y=c(...)) where the two members x and y will be vectors of corresponding coordinates


thomasWeise/plotteR documentation built on May 29, 2019, 5:41 a.m.