Measurement Studio for VC++

cancel
Showing results for 
Search instead for 
Did you mean: 

How can I increase the performance of the CNiGraphs?

Now that my vector additions are decently robust, I'd like to speed up the graphs that display the data. I've already disabled auto-scaling, and all the vectors being plotted are the same length and type (CNiReal64Vector's).

Currently I'm using the .GetPlots().Item(i).PlotY(m_vData) a couple of times to plot a few waveforms. Is this the fastest method?

...
Please tell me that the graphs don't index each vector using the overload [] operators... If they do, is there a way I can inject the data right into the graph's data buffer and tell it to refresh?
0 Kudos
Message 1 of 3
(3,664 Views)
Place all the waveforms in a matrix (m_mData) where each row of the matrix is a waveform (m_vData above). Then call Graph.PlotY(m_mData) once.
Message 2 of 3
(3,664 Views)
Thanks! It's 190000 ticks faster now - still slow as hell but 18% faster than it was... Hey, that's the time it takes to send a message... hum.
0 Kudos
Message 3 of 3
(3,664 Views)