Uses of Interface
dev.nm.analysis.function.tuple.OrderedPairs
-
-
Uses of OrderedPairs in dev.nm.analysis.curvefit
Methods in dev.nm.analysis.curvefit with parameters of type OrderedPairs Modifier and Type Method Description UnivariateRealFunction
CurveFitting. fit(OrderedPairs f)
Fit a real valued function from a discrete set of data points.UnivariateRealFunction
LeastSquares. fit(OrderedPairs f)
-
Uses of OrderedPairs in dev.nm.analysis.curvefit.interpolation
Methods in dev.nm.analysis.curvefit.interpolation with parameters of type OrderedPairs Modifier and Type Method Description void
LinearInterpolator. addData(OrderedPairs f)
void
NevilleTable. addData(OrderedPairs f)
void
OnlineInterpolator. addData(OrderedPairs f)
Add more points for interpolation.Constructors in dev.nm.analysis.curvefit.interpolation with parameters of type OrderedPairs Constructor Description LinearInterpolator(OrderedPairs f)
Construct a univariate function by linearly interpolating between adjacent points.NevilleTable(int n, OrderedPairs f)
Construct a Neville table of size n, initialized with data {(x, y)}.NevilleTable(OrderedPairs f)
Construct a Neville table of size n, initialized with data {(x, y)}. -
Uses of OrderedPairs in dev.nm.analysis.curvefit.interpolation.univariate
Methods in dev.nm.analysis.curvefit.interpolation.univariate with parameters of type OrderedPairs Modifier and Type Method Description UnivariateRealFunction
CubicHermite. fit(OrderedPairs op)
UnivariateRealFunction
CubicSpline. fit(OrderedPairs pairs)
UnivariateRealFunction
Interpolation. fit(OrderedPairs f)
Fit a real valued function from a discrete set of data points.UnivariateRealFunction
LinearInterpolation. fit(OrderedPairs f)
UnivariateRealFunction
NewtonPolynomial. fit(OrderedPairs f)
Constructors in dev.nm.analysis.curvefit.interpolation.univariate with parameters of type OrderedPairs Constructor Description DividedDifferences(OrderedPairs pairs)
Construct divided differences from a given collection of ordered pairs. -
Uses of OrderedPairs in dev.nm.analysis.function.rn2r1.univariate
Classes in dev.nm.analysis.function.rn2r1.univariate that implement OrderedPairs Modifier and Type Class Description class
StepFunction
A step function (or staircase function) is a finite linear combination of indicator functions of intervals.Methods in dev.nm.analysis.function.rn2r1.univariate with parameters of type OrderedPairs Modifier and Type Method Description void
StepFunction. add(OrderedPairs f)
Dynamically add points to the step function.Constructors in dev.nm.analysis.function.rn2r1.univariate with parameters of type OrderedPairs Constructor Description StepFunction(OrderedPairs f)
Construct a step function from a collection ordered pairs.StepFunction(OrderedPairs f, double epsilon)
Construct a step function from a collection ordered pairs. -
Uses of OrderedPairs in dev.nm.analysis.function.tuple
Classes in dev.nm.analysis.function.tuple that implement OrderedPairs Modifier and Type Class Description class
PartialFunction
A partial function from X to Y is a function f: X' → Y, where X' is a subset of X.class
SortedOrderedPairs
The ordered pairs are first sorted by abscissa, then by ordinate.Constructors in dev.nm.analysis.function.tuple with parameters of type OrderedPairs Constructor Description SortedOrderedPairs(OrderedPairs pairs)
-