Package | Description |
---|---|
com.panayotis.gnuplot.dataset |
Modifier and Type | Method and Description |
---|---|
Point<N> |
PointDataSet.set(int index,
Point<N> point)
Replace the Point at the specified position with the provided one
|
Modifier and Type | Method and Description |
---|---|
void |
PointDataSet.add(int index,
Point<N> point)
Add a new point to this DataSet at a specified position
|
boolean |
PointDataSet.add(Point<N> point)
Add a new point to this DataSet
|
Point<N> |
PointDataSet.set(int index,
Point<N> point)
Replace the Point at the specified position with the provided one
|
Modifier and Type | Method and Description |
---|---|
boolean |
PointDataSet.addAll(java.util.Collection<? extends Point<N>> pts)
Add a collection of points to this DataSet
|
boolean |
PointDataSet.addAll(int index,
java.util.Collection<? extends Point<N>> pts)
Add a collection of points to this DataSet starting at a specified
position if there are data at the specified position, these will be
shifted
|
Constructor and Description |
---|
PointDataSet(java.util.Collection<? extends Point<N>> pts)
Create a new PointDataSet from a previous collection of Points
|