-
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 > FPScript > divide dataset to multiple datasets > Antwort auf: divide dataset to multiple datasets
November 30, 2009 um 8:07 pm Uhr
#8764
Bernhard Kantz
Teilnehmer
1) You could use VBA to create the FPScript formulas (which use the index operator).
2) You could use the Reshape-function to convert a signal into a signal series.
Example:
Formula SignalSeries
Dim y = Reshape(Signal.Y, {20, NumberOfRows(Signal.Y)/ 20})
Dim x = Reshape(Signal.X, {20, NumberOfRows(Signal.X)/ 20})
Signal(y,x)
Now you can create a formula for each signal:
SignalSeries[0]
...