Topic
formula to put at 0 data between -5 and +5
Startseite ' Community ' Allgemein ' formula to put at 0 data between -5 and +5
- Dieses Thema hat 2 Antworten sowie 2 Teilnehmer und wurde zuletzt vor vor 18 Jahren, 1 Monaten von maraval frédéric aktualisiert.
-
AutorBeiträge
-
28.03.2007 um 20:11 Uhr #34025maraval frédéricTeilnehmer
We are using flexpro standard. We have data name tension with 2 columns one X time event and the other Y tension value. We want to put at zero some tension value comprising between two level ( ex -5 at +5 ) from a list of data.
thanks for your help28.03.2007 um 20:11 Uhr #34027maraval frédéricTeilnehmerWe are using flexpro standard. We have data name tension with 2 columns one X time event and the other Y tension value. We want to put at zero some tension value comprising between two level ( ex -5 at +5 ) from a list of data.
thanks for your help28.03.2007 um 22:31 Uhr #34026Bernhard KantzTeilnehmerIn this case you can use the FPScript-function [b]ValuesInInterval[/b] and the [b]Index Operator[/b].
– Calculate the indices of the values between -5 and 5.
– Set the y-values of these indices to 0.[code]
Dim Sig = Tension
Sig.Y[ValuesInInterval(Sig, -5.00000000000000, 5.00000000000000, EVENT_INDEX)] = 0
Sig
[/code] -
AutorBeiträge
- Du musst angemeldet sein, um auf dieses Thema antworten zu können.