ITrace2D implementations
of jchart2d that apply computations on the input/output datapoints before
they provide them to the chart.See: Description
| Class | Description |
|---|---|
| Trace2DArithmeticMean |
A trace that accumulates the latest n points added to points with the
arithmetic mean value.
|
| Trace2DArithmeticMeanX |
A trace that accumulates the latest n x values added to points with
the arithmetic mean x value and the latest y value.
|
| Trace2DArithmeticMeanY |
A trace that accumulates the latest n y values added to points with
the arithmetic mean y value and the latest x value.
|
ITrace2D implementations
of jchart2d that apply computations on the input/output datapoints before
they provide them to the chart.
One example is a trace that accumulates the arithmetic mean of the n last input datapoints into one internal datapoint.
Please note that these traces can be used in two modes:
ITrace2D implementation to a chart and add
data points to it as normal.
ITrace2D implementation as a computing trace to
an existing trace via
ITrace2D.addComputingTrace(info.monitorenter.gui.chart.ITrace2D)
and only add data points to the original trace. Add the computing
trace to the same chart and updates of the original trace will
be reflected on the computing trace as well.
ITrace2DCopyright © 2017. All rights reserved.