-
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 multiply x axis by constant?
- Dieses Thema hat 4 Antworten sowie 2 Teilnehmer und wurde zuletzt vor vor 15 Jahren, 6 Monaten von Richard Smith aktualisiert.
-
AutorBeiträge
-
April 27, 2009 um 11:34 pm Uhr #12588Richard SmithTeilnehmer
If I create a function where I multiply a signal dataset by a constant this multiplies the Y axis values.
How to I do the same but multiply only the X axis (for instance time) values?
Thanks.
April 27, 2009 um 11:34 pm Uhr #8251Richard SmithTeilnehmerIf I create a function where I multiply a signal dataset by a constant this multiplies the Y axis values.
How to I do the same but multiply only the X axis (for instance time) values?
Thanks.
April 27, 2009 um 11:39 pm Uhr #8942Bernhard KantzTeilnehmerUse the following FPScript code:
Dim factor = 2.0 Signal(data.Y, data.X * factor)
In this example data is the signal name.
April 28, 2009 um 12:29 am Uhr #8943Richard SmithTeilnehmerThanks for the reply.
I tried this solution and it works perfectly, however, I am wondering what the “Dim factor = 2.0” does because also just tried “Signal(signalname.Y, signalname.X * factor” by itself that also works perfectly.
Thanks.
April 28, 2009 um 12:45 am Uhr #8944Bernhard KantzTeilnehmerBoth notations are possible. The Dim statement declares a local variables and assigns a value to it. But you’re right. In this simple example you don’t need to use this variable.
-
AutorBeiträge
- Du musst angemeldet sein, um auf dieses Thema antworten zu können.