seq_log.Rd
Sequence in log space
seq_log(from, to, length.out) seq_log_range(r, length.out) seq_range(r, length.out)
from | Starting point |
---|---|
to | Ending point |
length.out | Number of points to generate |
r | range (i.e., c(from, to) |
Unlike the billions of options for seq
, only
length.out
is supported here, and both from
and
to
must be provided. For completeness, seq_range
generates a range in non-log space.
Rich FitzJohn