Signals, represented implicitly, with plotting and combinations.
|
Signal
Represent infinite signals.
|
|
CosineSignal
Primitive family of sinusoidal signals.
|
|
UnitSampleSignal
Primitive unit sample signal has value 1 at time 0 and value 0
elsewhere.
|
|
ConstantSignal
Primitive constant sample signal.
|
|
SummedSignal
Sum of two signals
|
|
ScaledSignal
Signal multiplied everywhere by a constant
|
|
R
Signal delayed by one time step, so that R(S).sample(n+1) =
S.sample(n)
|
|
Rn
Signal delayed by several time steps
|
|
FilteredSignal
Signal filtered by a function, applied to a fixed-sized window of
previous values
|
|
StepSignal
Signal that has value 1 for all n >= 0, and value 0 otherwise.
|
|
ListSignal
Signal defined with a specific list of sample values, from 0 to
some fixed length; It has value 0 elsewhere.
|
|
ListSignalSampled
Signal defined with a specific list of sample values, from 0 to
some fixed length; It has the last value past the end and the
first value before the start.
|