FlexPro
HistoryBase
Engineering
Training
Downloads
FlexPro-Support
Wissen
Community
Über Uns
Referenzen
Jobs
Allgemeiner Kontakt
Händlerverzeichnis
FlexPro-Support
DE
EN
FR
Placeholder
Produkte und Lösungen
Support und Downloads
Unternehmen
Magazin
Kontakt
Sprache
MyWeisang

Account Einstellungen

Topic

Signal manipulation

Startseite ' Community ' Allgemein ' Signal manipulation

Anzeigen von 3-Stellen - 1 bis 3 (von insgesamt 3)
  • Autor
    Beiträge
  • #34042

    I have several data sets in Flexpro 7 and would like to delete values out of all sets based on the values of one set falling below a certain value. What is the best way to do this?

    #34044

    I have several data sets in Flexpro 7 and would like to delete values out of all sets based on the values of one set falling below a certain value. What is the best way to do this?

    #34043
    Bernhard Kantz
    Teilnehmer

    Create a FPScript formula which removes the values below a threshold.
    – Use the [b]ValuesAboveLevel[/b] function to calculate the indices of the event. You could remove the values directly if you don’t have a reference signal (Use EVENT_EXTRACT instead of EVENT_INDEX).

    Example: FPScript formula ‘Remove’
    [code]
    Arguments data
    Dim idx = ValuesAboveLevel(ReferenceSignal, 0.5, EVENT_INDEX)
    s[idx]
    [/code]
    Create an additional function for each signal:
    [code]
    Remove(Signal)
    [/code]

    support@weisang.com

Anzeigen von 3-Stellen - 1 bis 3 (von insgesamt 3)
  • Du musst angemeldet sein, um auf dieses Thema antworten zu können.