Forum FlexPro – Discuss your topic!

Script for Splitting the signal

Accueil > Community > FPScript > Script for Splitting the signal

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #12840

    I Am new to Fp Scrpit
    Am having a signal with RPM in Y & time in X axis
    I need to plot Clockwise & counter clockwise as a two different signals from the original signal
    Kindly help me in this

    Regards,

    Karthick.L

    #8500

    I Am new to Fp Scrpit
    Am having a signal with RPM in Y & time in X axis
    I need to plot Clockwise & counter clockwise as a two different signals from the original signal
    Kindly help me in this

    Regards,

    Karthick.L

    #9336
    Bernhard KantzBernhard Kantz
    Participant

    To split a signal at a certain level (e.g. 0 in the question) one can use the FPScript functions ValuesAboveLevel() and ValuesBelowLevel(). In the available example a FPScript formula like

    [  ValuesAboveLevel(Speed, 0, EVENT_SETVOID), \
       ValuesBelowLevel(Speed, 0, EVENT_SETVOID) ]

    creates a list with two named entries for the parts of the signal Speed ? 0 and ? 0. The parts have the same size as the original signal, the values not satisfying the condition are set to the floating point void value (? or NaN), as specified by the third argument EVENT_SETVOID. Other operations can be looked up in the Online Help (Index: ValuesAboveLevel (FPScript)).

    One can achieve the same results by using the Event Isolation on the desired signal avoiding the need to write any FPScript code.

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.