lseq: Log-spaced sequence

View source: R/emdbook.R

lseqR Documentation

Log-spaced sequence

Description

Generates a logarithmically spaced sequence

Usage

lseq(from, to, length.out)

Arguments

from

starting value

to

ending value

length.out

number of intervening values

Details

lseq() is just a wrapper for exp(seq(log(from), log(to), length.out = length.out))

Value

logarithmically spaced sequence

Author(s)

Ben Bolker

See Also

seq

Examples

lseq(10,1000,9)

emdbook documentation built on July 9, 2023, 6:33 p.m.

Related to lseq in emdbook...