Measurement Studio for .NET Languages

cancel
Showing results for 
Search instead for 
Did you mean: 

Read data from a waveform plot

Solved!
Go to solution

Hi!

 

Is it possible to read the y-values of a waveform plot out of the waveform history?  In particular I have some data plotted in a waveform and want to get all y-points between two cursors into an array to make a FFT.

I'm using Measurement Studio 2008 and Visual Basic 2008.

 

regards,

 

Andreas

0 Kudos
Message 1 of 2
(3,365 Views)
Solution
Accepted by topic author tyketyke

I found it out by myself. I did it in that way:

 

Dim data(XYPlot.HistoryCount - 1) As Double

 

For index As Integer = 0 To XYPlot.HistoryCount - 1

      data(index) = PlotX.GetYData(index)

Next

0 Kudos
Message 2 of 2
(3,354 Views)