Introduction

Tutorials

Interfaces


API Reference

public SinExpparametric type

SinExp{F<:Number, T<:Sin{F}, S<:Exp{F}} <: CyclicSchedule
SinDecay2(λ0, λ1, period, γ)
SinDecay2(;λ0, λ1, period, γ)

A sine wave schedule with period and an exponentially decaying amplitude. The output conforms to

abs(λ0 - λ1) * Sin(t) * γ^(t - 1) + min(λ0, λ1)

where Sin(t) is the cycle of Sin.

Arguments

  • λ0::Number: the start value
  • λ1::Number: the end value
  • period::Integer: the period
  • γ::Number: the decay rate