Topic
Signal manipulation
Page d'accueil ' Communauté ' Généralités ' Manipulation du signal
- Ce sujet contient 2 réponses, 2 participants et a été mis à jour pour la dernière fois par Frits van der Steege, le il y a 18 années et 3 mois.
-
AuteurMessages
-
10.02.2007 à 01:14 #34042Frits van der SteegeParticipant
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 à 01:14 #34044Frits van der SteegeParticipantI 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 à 21:10 #34043Bernhard KantzParticipantCreate 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] -
AuteurMessages
- Vous devez être connecté pour répondre à ce sujet.