Module sample::signal
[−]
[src]
Use the Signal trait for working with Iterators that yield Frames. To complement the Iterator trait, Signal provides methods for adding, scaling, offsetting, multiplying, clipping and generating frame iterators and more.
You may also find a series of Signal source functions, including:
- equilibrium for generating "silent" frames.
- phase for a stepping phase, useful for oscillators.
- sine for generating a sine waveform.
- saw for generating a sawtooth waveform.
- square for generating a square waveform.
- noise for generating a noise waveform.
- noise_simplex for generating a 1D simplex noise waveform.
- gen for generating frames of type F from some
Fn() -> F
. - gen_mut for generating frames of type F from some
FnMut() -> F
. - from_interleaved_samples for converting an iterator yielding samples to an iterator yielding frames.
Working with Signals allows for easy, readable creation of rich and complex DSP graphs with a simple and familiar API.
Structs
AddAmp |
An iterator that yields the sum of the frames yielded by both |
Bus |
A type which allows for |
ClipAmp |
Clips samples in each frame yielded by |
ConstHz |
A constant phase step size. |
Delay |
Delays the |
Equilibrium |
An iterator that endlessly yields |
FromInterleavedSamples |
An iterator that converts an iterator of |
Gen |
A signal that generates frames using the given function. |
GenMut |
A signal that generates frames using the given function which may mutate some state. |
Hz |
An iterator that yields the step size for a phase. |
MulAmp |
An iterator that yields the product of the frames yielded by both |
MulHz |
Multiplies the rate at which frames of |
Noise |
A noise signal generator. |
NoiseSimplex |
A 1D simplex-noise generator. |
OffsetAmp |
Provides an iterator that offsets the amplitude of every channel in each frame of the signal by some sample value and yields the resulting frames. |
OffsetAmpPerChannel |
An |
Output |
An output node to which some signal |
Phase |
An iterator that yields a phase, useful for waveforms like Sine or Saw. |
Rate |
The rate at which phrase a Signal is sampled. |
Saw |
A saw wave signal generator. |
ScaleAmp |
An |
ScaleAmpPerChannel |
An |
Sine |
A sine wave signal generator. |
Square |
A square wave signal generator. |
ToSamples |
Converts a |
Traits
Signal |
A trait that allows us to treat |
Step |
Types that may be used to give a phase step size based on some |
Functions
equilibrium |
Provides an iterator that endlessly yields |
from_interleaved_samples |
An iterator that converts the given |
gen |
A signal that generates frames using the given function. |
gen_mut |
A signal that generates frames using the given function which may mutate some state. |
noise |
Produces a |
noise_simplex |
Produces a 1-dimensional simplex noise |
phase |
Creates a |
rate |
Creates a frame |
saw |
Produces a |
sine |
Produces a |
square |
Produces a |