-
FlexPro
- Zoom sur FlexPro
- Fonctionnalités & Options
- Domaines d’application
- Tous les avantages
- Nouveau dans FlexPro 2021
- Testez FlexPro gratuitement
- FlexPro View OEM Freeware
- Conseils d’achat
- Login
- Langue
- +49 6894 929600
- infoweisang.com
- Google Maps
- Produits
- News
- Support
- Société
- Emplois
- Contact
- Login
- Langue
- +49 6894 929600
- infoweisang.com
- Google Maps
Accueil > Community > FPScript > How to adjust the sampling rates of different datasets > Reply To: How to adjust the sampling rates of different datasets
August 9, 2003 at 2:14 am
#8877
Bernhard Kantz
Participant
There is a function Sample available in FPScript which can be used to re-sample a dataset. A formula to create a Dataset for XY-display could look like this:
Signal(Dataset1, Sample(Dataset2, Diataset1.x))
The formula above should be used only, if the X range of Dataset2 exceeds that of Dataset1. If the opposite is the case, then the formula should be:
Signal(Sample(Dataset1, Dataset2.x), Dataset2)