Forum FlexPro – Discuss your topic!

Event Isolation: Scaling only positive parts of a signal

Accueil > Community > FPScript > Event Isolation: Scaling only positive parts of a signal

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #12534
    Bernward GreweBernward Grewe
    Participant

    I want to scale the positive parts of a signal only. A loop over each value takes too much time.

    #8197
    Bernward GreweBernward Grewe
    Participant

    I want to scale the positive parts of a signal only. A loop over each value takes too much time.

    #8867
    Bernhard KantzBernhard Kantz
    Participant

    This is a typical case for using the FPScript functions of the Event Isolation group.

    The following formula returns a signal where all positive values are scaled by a factor of 5:

    
    Dim idx, s
    idx = ValuesAboveLevel(Signal, 0, EVENT_INDEX)
    s = Signal
    s.y[idx] = s.y[idx]* 5
    s
    

    The call of ValuesAboveLevel returns the indexes of all values in the given signal which are higher than zero. s.y[idx] extracts all these values from the Y component of the signal and scales them by 5. Then an index assignment is done to replace the values, found in the signal with the scaled ones.
    The last statement s just makes sure that the whole signal is returned as the result.

    As you can see in this example, working with indexes is a powerful feature of FPScript. You could also call ValuesAboveLevel in a way, that it returns the values found, but then the position information would be lost. Once you have found the positions of “events”, you are free to perform any further processing with them. Typical uses are:

    1. Finding events in one data set and processing them on a different dataset.
    2. Combining multiple events by using the Boolean functions IndexAnd, IndexOr and IndexNot.
    3. Sequencing different events by using the Next…-type of functions, e. g NextValueAboveLevel.

    support@weisang.com

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