Home > Community > General > Signal manipulation > Antwort auf: Signal manipulation

#9042
Bernhard KantzBernhard Kantz
Teilnehmer

Create a FPScript formula which removes the values below a threshold.
– Use the ValuesAboveLevel 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’


Arguments data
Dim idx = ValuesAboveLevel(ReferenceSignal, 0.5, EVENT_INDEX)
s[idx]

Create an additional function for each signal:


Remove(Signal)

support@weisang.com