-
FlexPro
- Auf einen Blick
- Features & Optionen
- Einsatzgebiete
- Alle Vorteile
- Neu in FlexPro 2021
- FlexPro gratis testen
- FlexPro View OEM Freeware
- Kaufberatung
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
- Produkte
- News
- Support
- Unternehmen
- Jobs
- Kontakt
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
Home > Community > General > Signal manipulation > Antwort auf: Signal manipulation
Februar 12, 2007 um 9:10 pm Uhr
#9042

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)