FlexPro Forum – Discuss Your Topic!

Schnittpunkt von Graph und Geraden

Home > Community > Automation and VBA > Schnittpunkt von Graph und Geraden

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #12408

    Wie kann ich diesen Schnittpunkt ausgeben lassen? Und zwar den ersten Schnittpunkt?

    #8091

    Wie kann ich diesen Schnittpunkt ausgeben lassen? Und zwar den ersten Schnittpunkt?

    #8674
    Bernhard KantzBernhard Kantz
    Participant

    Create a FPScript formula which calculates the intersection point. Subtract the line from the curve and search the zero values with the LevelCrossings function. If you only need the first x-value you can also use the NextLevelCrossing function.

    [Code]
    Dim idx = LevelCrossings(Signal2 – Signal, 0, 0, EVENT_BOTH, EVENT_INDEX)
    Signal[idx]
    [/Code]

    support@weisang.com

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