Schedules¶
Generate sorted time points.
- class arbor.schedule¶
Opaque representation of a schedule.
- regular_schedule(t0, dt, t1 = None);
Regular schedule with start
t0
, intervaldt
, and optional endt1
.
- regular_schedule(dt);
Regular schedule with interval
dt
.
- explicit_schedule(seq);
Generate events from a predefined sorted event sequence.
- explicit_schedule_from_milliseconds(seq);
Generate events from a predefined sorted event sequence given in units of
[ms]
- poisson_schedule(tstart, rate, seed=None, tstop=None);
Poisson point process with rate
rate
. The underlying Mersenne Twister pRNG is seeded withseed
- schedule poisson_schedule(rate, seed=None, tstop=None);
Poisson point process with rate
rate
. The underlying Mersenne Twister pRNG is seeded withseed
Event Generators¶
Wrapper class around schedules to generate spikes based on the internal schedule with a given target and weight.