Topic
Signal manipulation
- This topic has 2 replies and 2 voices and was last updated 18 years, 3 months ago ago by Frits van der Steege.
-
AuthorPosts
-
10.02.2007 at 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 at 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 at 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] -
AuthorPosts
- You must be logged in to reply to this topic.