-
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
Seeking extrema
- Dieses Thema hat 2 Antworten sowie 2 Teilnehmer und wurde zuletzt vor vor 17 Jahren, 11 Monaten von Dirk Kampffmeyer aktualisiert.
-
AutorBeiträge
-
Dezember 5, 2006 um 11:23 pm Uhr #12505Dirk KampffmeyerTeilnehmer
Hello,
I would like to search an extrema and reduce the signal starting from this extrema. The program, however, outputs nothing but a failure of data structure.
dim idxextrema=GlobalMaximum(Ch1,EVENT_INDEX)
CH1[[idxextrema, Empty]]Dezember 5, 2006 um 11:23 pm Uhr #8168Dirk KampffmeyerTeilnehmerHello,
I would like to search an extrema and reduce the signal starting from this extrema. The program, however, outputs nothing but a failure of data structure.
dim idxextrema=GlobalMaximum(Ch1,EVENT_INDEX)
CH1[[idxextrema, Empty]]Dezember 5, 2006 um 11:54 pm Uhr #8805Bernhard KantzTeilnehmerWhy do you use the Value Index operator and Empty as second argument?
The result of GlobalMaximum is a data series with the indices of the maxima. In your case you need a scalar start index and a scalar end index. Use the Index operator. -1 is the index of the last value.CH1[idxextrema[0], -1]
The result is a signal starting from the first maximum.
If you only need the maximum y-value use the Maximum-function.
Maximum(ch1) //is equivalent to CH1[idxextrema[0]]
-
AutorBeiträge
- Du musst angemeldet sein, um auf dieses Thema antworten zu können.