seq_FV: 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
)
Value
A sequence of function values
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)