-
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
Find differences in two index datasets
- Dieses Thema hat 2 Antworten sowie 2 Teilnehmer und wurde zuletzt vor vor 20 Jahren, 8 Monaten von Bernward Grewe aktualisiert.
-
AutorBeiträge
-
März 17, 2004 um 10:59 pm Uhr #12532Bernward GreweTeilnehmer
I have two index datasets created with different kinds of event isolation. The second one is created by filtering the first one. How can I get the indices that are in the first and not in the second index dataset?
März 18, 2004 um 12:28 am Uhr #8195Bernward GreweTeilnehmerI have two index datasets created with different kinds of event isolation. The second one is created by filtering the first one. How can I get the indices that are in the first and not in the second index dataset?
März 18, 2004 um 12:28 am Uhr #8865Bernhard KantzTeilnehmerUsing the FPScript function IndexNot() and IndexAnd(), you’ll get the indices thar are in the one but not in the other dataset. Here is an example:
Dim aa, bb, cc, dd aa = {1,3,5,7, 11, 4, 34} bb = ValuesInInterval(aa, 0, 10, EVENT_INDEX) cc = ValuesInInterval(aa, 0, 5, EVENT_INDEX) dd = IndexNot(cc, NumberOfValues(aa)) IndexAnd(bb, dd)
The variable bb contains the indices of the values within the interval 0 to 10. The variable cc contains the indices of the values within the interval 0 to 5.
Use the IndexNot function to get all indices of the values which are not in the interval 0 to 5. The result of the IndexAnd function is a data series with the indices which appear in both arguments. In this case the result is a data series with the indices of values within the interval ]5,10]. -
AutorBeiträge
- Du musst angemeldet sein, um auf dieses Thema antworten zu können.