synthesizer-0.0.3: Audio signal processing coded in HaskellSource codeContentsIndex
Synthesizer.Causal.Oscillator
Portabilityrequires multi-parameter type classes
Stabilityprovisional
Maintainersynthesizer@henning-thielemann.de
Contents
Oscillators with arbitrary but constant waveforms
Oscillators with specific waveforms
Description
Tone generators
Synopsis
freqToPhases :: C a => T a -> a -> T (T a)
freqsToPhases :: C a => T a -> T a (T a)
phaseMod :: C a => T a b -> a -> T a b
shapeMod :: C a => (c -> T a b) -> T a -> a -> T c b
freqMod :: C a => T a b -> T a -> T a b
freqModAntiAlias :: C a => T a b -> T a -> T a b
phaseFreqMod :: C a => T a b -> T (a, a) b
shapeFreqMod :: C a => (c -> T a b) -> T a -> T (c, a) b
freqModSample :: C a => T a b -> T b -> T a -> T a b
freqModSine :: (C a, C a) => T a -> T a a
phaseModSine :: (C a, C a) => a -> T a a
freqModSaw :: C a => T a -> T a a
Oscillators with arbitrary but constant waveforms
freqToPhases :: C a => T a -> a -> T (T a)Source
freqsToPhases :: C a => T a -> T a (T a)Source
Convert a list of phase steps into a list of momentum phases. phase is a number in the interval [0,1). freq contains the phase steps.
phaseMod :: C a => T a b -> a -> T a bSource
oscillator with modulated phase
shapeMod :: C a => (c -> T a b) -> T a -> a -> T c bSource
oscillator with modulated shape
freqMod :: C a => T a b -> T a -> T a bSource
oscillator with modulated frequency
freqModAntiAlias :: C a => T a b -> T a -> T a bSource
oscillator with modulated frequency
phaseFreqMod :: C a => T a b -> T (a, a) bSource
oscillator with both phase and frequency modulation
shapeFreqMod :: C a => (c -> T a b) -> T a -> T (c, a) bSource
oscillator with both shape and frequency modulation
freqModSample :: C a => T a b -> T b -> T a -> T a bSource
Oscillators with specific waveforms
freqModSine :: (C a, C a) => T a -> T a aSource
sine oscillator with modulated frequency
phaseModSine :: (C a, C a) => a -> T a aSource
sine oscillator with modulated phase, useful for FM synthesis
freqModSaw :: C a => T a -> T a aSource
saw tooth oscillator with modulated frequency
Produced by Haddock version 2.3.0