powered by
Function for generating sequences of runtime values
seq_RT( RT, from = NULL, to = NULL, by = NULL, length.out = NULL, scale = "linear" )
A sequence of runtime values
A list of runtime values
Starting runtime value. Will be replaced by min(RT) if it is NULL or too small
Stopping runtime value. Will be replaced by max(RT) if it is NULL or too large
Stepsize of the sequence. Will be replaced if it is too small
Number of values in the sequence. 'by' takes preference if both it and length.out are provided.
Scaling of the sequence. Can be either 'linear' or 'log', indicating a linear or log-linear spacing respectively.
RTall <- get_runtimes(dsl) seq_RT(RTall, 0, 500, length.out=10, scale='log')
Run the code above in your browser using DataLab