-
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
How to zero shift a data set?
- Dieses Thema hat 2 Antworten sowie 2 Teilnehmer und wurde zuletzt vor vor 15 Jahren, 9 Monaten von Richard Smith aktualisiert.
-
AutorBeiträge
-
Februar 25, 2009 um 1:58 am Uhr #12593Richard SmithTeilnehmer
I have a large number of data sets that have 25ms of useless pretrigger information in them (many hundreds of points) that I want to discard. Is there a function or any easy way (other than using Excel) to take the data sets, delete the first 25ms (or whatever period I choose) of information and rumber the time signal starting at zero (as now after deletion the first data point will be at 25ms).
I am sure there must be an easy way to do this in Flexpro, I just don’t know how?Thanks.
Februar 25, 2009 um 1:58 am Uhr #8256Richard SmithTeilnehmerI have a large number of data sets that have 25ms of useless pretrigger information in them (many hundreds of points) that I want to discard. Is there a function or any easy way (other than using Excel) to take the data sets, delete the first 25ms (or whatever period I choose) of information and rumber the time signal starting at zero (as now after deletion the first data point will be at 25ms).
I am sure there must be an easy way to do this in Flexpro, I just don’t know how?Thanks.
Februar 25, 2009 um 7:25 pm Uhr #8951Bernhard KantzTeilnehmerFPScript offers you the option of programming your own functions. You can create these as you would regular formulas; however, you need to use the Arguments statement in the first code line to declare arguments for the function.
1) Create a new FPScript formula:
Arguments data, pretrigger Dim idx = SearchValue(data.x, pretrigger) Signal(data.y[idx,-1], data.x[0, -idx])
The result of the SearchValue function is the position (index) of the pretrigger value.
The index operator [] exctracts a section from the signal.2) You can now use this function in other formulas. You only have to click on the data sets to which you would like to apply the function, use your mouse to select them from the Object List and drag them onto the function. You can then use this new formula for further calculations or for displaying in documents.
See also the FlexPro Help
Analyzing Data Mathematically
Formula
Applying Formulas to Data Sets -
AutorBeiträge
- Du musst angemeldet sein, um auf dieses Thema antworten zu können.