RE: How to translate (impulse -> pulse) for use in the Helicopter functions.
> Mike wrote:
> If I understand the question correctly...in order to transition an
> impulse signal into a pulse signal try creating a derived parameter
> using the following equation:
>
> pulse = impulse > Prev(impulse,1) ? pulse !& 1 : pulse
Here's a simpler version of the equation. It will also handle the impulse
value being > 1:
1) Create a derived parameter and name it "pBlib"
2) Set the derived parameter equation to
iBlib > Prev( iBlib, 1 ) ? !pBlib : pBlib
3) Replace "iBlib" in the above equation with your original impulse type
Blib parameter
4) Save
5) Use this new "pBlib" equation as the input to your Helicopter function
"blib" argument.
The equation uses its own previous value and the "not" (!) operator to
perform the toggle from 0 to 1 and back to 0. You can access your own
previous value by using your own parameter's name in the equation. If you
don't use the parameter name "pBlib" for your derived parameter, you will
need to change the equation (put this new name in each spot that says
pBlib). I hope that makes sense.
If you have any trouble, let us know. Please see the attached example
AnalysisWindow,
Jim