Delay is part of the WaveTrain system class library
Delay applies a specified delay to its scalar and/or vector inputs. Both inputs are required to be Recallables, which means they support an interface which allows us to access their past values. If either input varies continuously in time, so will the corresponding output. To apply a delay to a non-recallable scalar or vector, use Delay3.
|
Parameters
|
delay |  float | Delay time (s). | 0.0 |
Inputs
|
recallableScalar |  Recallable<float> | Scalar input to be delayed, which must be a "Recallable", that is it must support looking back in time. | |
recallableVector |  Recallable<Vector<float>> | Vector input to be delayed, which must be a "Recallable", that is it must support looking back in time. | |
Outputs
|
delayedScalar |  float | Equal to scalar input, but delayed by specified amount. | |
delayedVector |  Vector<float> | Equal to vector input, but delayed by specified amount. | |
Subsystems |
|
|
Last Saved: Tue Feb 19 19:23:10 MST 2008 by TVE version 2007B
|
|