G
Guest
I have a routine that calculates time vs temperature for a process. It
generates x,y points that I need to plot. The number of points to be plotted
varies, so I want to dynamically build the list of plot points at runtime.
I have tried using a point array, but the problem I run into is that the
points all have to be entered when the point array is dim'ed. I would like a
method by which I can add points, similar to building or concatenating a
string, as each calculation loop executes.
Does anyone have any ideas or sample code?
Thanks.
generates x,y points that I need to plot. The number of points to be plotted
varies, so I want to dynamically build the list of plot points at runtime.
I have tried using a point array, but the problem I run into is that the
points all have to be entered when the point array is dim'ed. I would like a
method by which I can add points, similar to building or concatenating a
string, as each calculation loop executes.
Does anyone have any ideas or sample code?
Thanks.