seq_FV: Function for generating sequences of function values

seq_FVR Documentation

Function for generating sequences of function values

Description

Function for generating sequences of function values

Usage

seq_FV(
  FV,
  from = NULL,
  to = NULL,
  by = NULL,
  length.out = NULL,
  scale = NULL,
  force_limits = FALSE
)

Arguments

FV

A list of function values

from

Starting function value. Will be replaced by min(FV) if it is NULL or too small

to

Stopping function value. Will be replaced by max(FV) if it is NULL or too large

by

Stepsize of the sequence. Will be replaced if it is too small

length.out

Number of values in the sequence. 'by' takes preference if both it and length.out are provided.

scale

Scaling of the sequence. Can be either 'linear' or 'log', indicating a linear or log-linear spacing respectively. If NULL, the scale will be predicted based on FV

force_limits

Whether the from and to values are hard, or should be modified based on detected FV values (default False)

Value

A sequence of function values

Examples

FVall <- get_runtimes(dsl)
seq_FV(FVall, 10, 16, 1, scale='linear')

IOHprofiler/IOHanalyzer documentation built on Feb. 1, 2024, 11:35 a.m.