PureData CEAMMC library web documentation
available since version: 0.9
In linear space, the sequence starts at base^start (base to the power of start) and ends with base^stop (see @endpoint).
START
@start property
type: float
STOP
@stop property
type: float
BASE
@base property
type: atom
N
@n property
type: int
@start
Get/set starting value of the sequence: base^start
type: float
default: 0
@stop
Get/set the final value (base^stop) of the sequence, unless @endpoint is false. In that
case, @n + 1 values are spaced over the interval in log-space, of which all but
the last (a sequence of length @n) are returned.
type: float
default: 2
@n
Get/set number of points
type: int
range: 4..1024
default: 100
@base
Get/set x-axis scale base
type: atom
enum: 10, 2, e
default: 10
@2
Get/set alias to @base 2
type: atom
@10
Get/set alias to @base 10
type: atom
@e
Get/set alias to @base e
type: atom
@endpoint
Get/set include @stop to interval
type: bool
default: 1
See also: [plot.linspace~] [plot.geomspace~]
Authors: Serge Poltavsky
License: GPL3 or later