public class XYZDatasetUtils extends java.lang.Object
XYZDataset.| Constructor and Description |
|---|
XYZDatasetUtils() |
| Modifier and Type | Method and Description |
|---|---|
static XYZDataset<java.lang.String> |
sampleFunction(Function3D f,
java.lang.String key,
double xmin,
double xmax,
double xcount,
double zmin,
double zmax,
double zcount)
Creates an
XYZDataset by sampling a Function3D over
a specified range. |
static XYZDataset<java.lang.String> |
sampleFunction(Function3D f,
java.lang.String key,
Range xrange,
double xcount,
Range zrange,
double zcount)
Creates an
XYZDataset by sampling a Function3D over
a specified range. |
public XYZDatasetUtils()
public static XYZDataset<java.lang.String> sampleFunction(Function3D f, java.lang.String key, Range xrange, double xcount, Range zrange, double zcount)
XYZDataset by sampling a Function3D over
a specified range.f - the function (null not permitted).key - the series key (null not permitted).xrange - the range of x values (null not permitted).xcount - the number of x samples (must be at least 2).zrange - the range of z values (null not permitted).zcount - the number of z-samples (must be at least 2).public static XYZDataset<java.lang.String> sampleFunction(Function3D f, java.lang.String key, double xmin, double xmax, double xcount, double zmin, double zmax, double zcount)
XYZDataset by sampling a Function3D over
a specified range.f - the function (null not permitted).key - the series key (null not permitted).xmin - the lower bound of the x-range.xmax - the upper bound of the x-range.xcount - the number of x samples (must be at least 2).zmin - the lower bound of the z-range.zmax - the upper bound of the z-range.zcount - the number of z-samples (must be at least 2).