Search found 3 matches

by rooney
Wed Jan 02, 2008 2:12 pm
Forum: C, C++, C#
Topic: How to plot Y array with constant X increment
Replies: 6
Views: 28194

It does not work

I've tested the new dll/lib and the new version of DPlot JR but some strange things are going on.

if I set x=NULL and execute the following function in my application
DPlot_AddData(DocNum, DATA_XYXY, samplesToRead, 1, &x[0], &y[0]);
the plot looks like this:
http://www.poms-engineering.at/share/new ...
by rooney
Thu Dec 27, 2007 5:10 pm
Forum: C, C++, C#
Topic: How to plot Y array with constant X increment
Replies: 6
Views: 28194

Thanks a lot!!!!!

If this feature would be included in the next release it would simplify some applications.
At the moment I may keep memory requirements low by reducing the block size.
by rooney
Thu Dec 27, 2007 1:11 pm
Forum: C, C++, C#
Topic: How to plot Y array with constant X increment
Replies: 6
Views: 28194

How to plot Y array with constant X increment

I want to use DPLOT Jr to plot the values of an analog-to-digital converter (ADC).
The plot should display three curves as the the converter provides three analog channels.

The Y axis relate to the sample values of the converter. The x axis relates to the samples numbers (1, 2, 3, 4...).
A ...