Skip navigation

Account settings

Topic

How to multiply x axis by constant?

Home page Community General How to multiply x axis by constant?

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #33832
    Richard Smith
    Participant

    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.

    #33836
    Richard Smith
    Participant

    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.

    #33833
    Bernhard Kantz
    Participant

    Use the following FPScript code:
    [code]
    Dim factor = 2.0
    Signal(data.Y, data.X * factor)
    [/code]

    In this example [b]data[/b] is the signal name.

    support@weisang.com

    #33834
    Richard Smith
    Participant

    Thanks 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.

    #33835
    Bernhard Kantz
    Participant

    Both 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.

    support@weisang.com

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.