| Methods in edu.neu.ccs.gui with parameters of type Function.OneArg |
static Point2D[] |
DataTables2D.makeTable(Function.OneArg f,
Interval limits,
int divisions)
Make a Point2D array of pairs (x,f(x)) where x is sampled on
the given interval divided into the given number of divisions. |
static Point2D[] |
DataTables2D.makeTable(Function.OneArg f,
double endpointA,
double endpointB,
int divisions)
Make a Point2D array of pairs (x,f(x)) where x is sampled on
the given interval divided into the given number of divisions. |
static Point2D[][] |
DataTables2D.makeTable(Function.OneArg[] f,
Interval limits,
int divisions)
Make a Point2D array of arrays of pairs (x,f[i](x)) where
i ranges over the valid indices for the function array f
and where x is sampled on the given interval
divided into the number of divisions. |
static Point2D[][] |
DataTables2D.makeTable(Function.OneArg[] f,
double endpointA,
double endpointB,
int divisions)
Make a Point2D array of arrays of pairs (x, f[i](x)) where
i ranges over the valid indices for the function array f
and where x is sampled on the given interval
divided into the number of divisions. |