lseq {emdbook}R 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)

[Package emdbook version 1.3.13 Index]