Uses of Interface
edu.neu.ccs.gui.Function.OneArg

Packages that use Function.OneArg
edu.neu.ccs.gui Provides classes and interfaces for designing and implementing graphical interfaces and for the creation of paintable and mutatable objects.. 
 

Uses of Function.OneArg in edu.neu.ccs.gui
 

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.