FlexPro
HistoryBase
Ingénierie
Formation
Téléchargements
Assistance FlexPro
Connaissance
Communauté
À propos de nous
Références
Emplois
Contact général
Liste des revendeurs
Assistance FlexPro
FR
DE
EN
Porte-plaquette
Produits et solutions
Support et téléchargements
Entreprise
Magazine
Contact
Langue
MyWeisang

Paramètres du compte.

Topic

Event Isolation: Scaling only positive parts of a signal

Page d'accueil ' Communauté ' FPScript ' Isolation des événements : mise à l'échelle uniquement des parties positives d'un signal

Voir les messages de 3 - 1 à 3 (sur un total de 3)
  • Auteur
    Messages
  • #33402
    Bernward Grewe
    Participant

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

    #33400
    Bernward Grewe
    Participant

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

    #33401
    Bernhard 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:

    [code]
    Dim idx, s
    idx = ValuesAboveLevel(Signal, 0, EVENT_INDEX)
    s = Signal
    s.y[idx] = s.y[idx]* 5
    s
    [/code]
    The call of [b]ValuesAboveLevel[/b] returns the indexes of all values in the given signal which are higher than zero. [b]s.y[idx][/b] 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 [b]s[/b] 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 [b]ValuesAboveLevel[/b] 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:

    [ol]
    [li]Finding events in one data set and processing them on a different dataset.[/li]
    [li]Combining multiple events by using the Boolean functions [b]IndexAnd[/b], [b]IndexOr[/b] and [b]IndexNot[/b].[/li]
    [li]Sequencing different events by using the [b]Next…[/b]-type of functions, e. g [b]NextValueAboveLevel[/b].[/li]
    [/ol]

    support@weisang.com

Voir les messages de 3 - 1 à 3 (sur un total de 3)
  • Vous devez être connecté pour répondre à ce sujet.