Forum FlexPro – Discuss your topic!

Signal analysis

Accueil > Community > FPScript > Signal analysis

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

    Is there any functions for the following

    How to find the X-position of the defined Y Position
    Length of the Wave form
    Cut down the wave from for the defined X-positions

    #8501

    Is there any functions for the following

    How to find the X-position of the defined Y Position
    Length of the Wave form
    Cut down the wave from for the defined X-positions

    #9337
    Bernhard KantzBernhard Kantz
    Participant

    To find all indices in a signal where a specific value is reached one can use the FPScript function ValuesInInterval() using this value for both the lower and the upper limit. Using EVENT_EXTRACT for Operation yields a signal with the specified value for the y component. Choosing the x component of the result gives all the desired x positions.
    The number of points in a signal can be obtained using the NumberOfRows() function. If the signal contains a (stationary) periodic waveform one can estimatethe period using the function Period().
    Clipping a signal for an interval in x can be done with the value index operator, e.g. sig[[1.2 s, 3.3 s]] cuts out the values for x from nearest to 1.2 s to approximately 3.3 s.

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