Topic
Signal manipulation
Startseite ' Community ' Allgemein ' Signal manipulation
- Dieses Thema hat 2 Antworten sowie 2 Teilnehmer und wurde zuletzt vor vor 18 Jahren, 3 Monaten von Frits van der Steege aktualisiert.
-
AutorBeiträge
-
10.02.2007 um 01:14 Uhr #34042Frits van der SteegeTeilnehmer
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?
10.02.2007 um 01:14 Uhr #34044Frits van der SteegeTeilnehmerI 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?
12.02.2007 um 21:10 Uhr #34043Bernhard KantzTeilnehmerCreate 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] -
AutorBeiträge
- Du musst angemeldet sein, um auf dieses Thema antworten zu können.