Uses of Class
org.apache.commons.math4.legacy.exception.NonMonotonicSequenceException
-
Packages that use NonMonotonicSequenceException Package Description org.apache.commons.math4.legacy.analysis.function Thefunction
package contains function objects that wrap the methods contained inMath
, as well as common mathematical functions such as the gaussian and sinc functions.org.apache.commons.math4.legacy.analysis.interpolation Univariate real functions interpolation algorithms.org.apache.commons.math4.legacy.analysis.polynomials Univariate real polynomials implementations, seen as differentiable univariate real functions. -
-
Uses of NonMonotonicSequenceException in org.apache.commons.math4.legacy.analysis.function
Constructors in org.apache.commons.math4.legacy.analysis.function that throw NonMonotonicSequenceException Constructor Description StepFunction(double[] x, double[] y)
Builds a step function from a list of arguments and the corresponding values. -
Uses of NonMonotonicSequenceException in org.apache.commons.math4.legacy.analysis.interpolation
Methods in org.apache.commons.math4.legacy.analysis.interpolation that throw NonMonotonicSequenceException Modifier and Type Method Description protected static double[]
DividedDifferenceInterpolator. computeDividedDifference(double[] x, double[] y)
Return a copy of the divided difference array.PolynomialSplineFunction
AkimaSplineInterpolator. interpolate(double[] xvals, double[] yvals)
Computes an interpolating function for the data set.BicubicInterpolatingFunction
BicubicInterpolator. interpolate(double[] xval, double[] yval, double[][] fval)
Compute an interpolating function for the dataset.BivariateFunction
BivariateGridInterpolator. interpolate(double[] xval, double[] yval, double[][] fval)
Compute an interpolating function for the dataset.PolynomialSplineFunction
ClampedSplineInterpolator. interpolate(double[] x, double[] y, double fpo, double fpn)
Computes an interpolating function for the data set.PolynomialFunctionNewtonForm
DividedDifferenceInterpolator. interpolate(double[] x, double[] y)
Compute an interpolating function for the dataset.PolynomialSplineFunction
LinearInterpolator. interpolate(double[] x, double[] y)
Computes a linear interpolating function for the data set.PolynomialSplineFunction
LoessInterpolator. interpolate(double[] xval, double[] yval)
Compute an interpolating function by performing a loess fit on the data at the original abscissae and then building a cubic spline with aSplineInterpolator
on the resulting fit.PolynomialFunctionLagrangeForm
NevilleInterpolator. interpolate(double[] x, double[] y)
Computes an interpolating function for the data set.PiecewiseBicubicSplineInterpolatingFunction
PiecewiseBicubicSplineInterpolator. interpolate(double[] xval, double[] yval, double[][] fval)
Compute an interpolating function for the dataset.TricubicInterpolatingFunction
TricubicInterpolator. interpolate(double[] xval, double[] yval, double[] zval, double[][][] fval)
Compute an interpolating function for the dataset.TrivariateFunction
TrivariateGridInterpolator. interpolate(double[] xval, double[] yval, double[] zval, double[][][] fval)
Compute an interpolating function for the dataset.UnivariateFunction
UnivariatePeriodicInterpolator. interpolate(double[] xval, double[] yval)
Computes an interpolating function for the dataset.double[]
LoessInterpolator. smooth(double[] xval, double[] yval)
Compute a loess fit on the data at the original abscissae.double[]
LoessInterpolator. smooth(double[] xval, double[] yval, double[] weights)
Compute a weighted loess fit on the data at the original abscissae.Constructors in org.apache.commons.math4.legacy.analysis.interpolation that throw NonMonotonicSequenceException Constructor Description BicubicInterpolatingFunction(double[] x, double[] y, double[][] f, double[][] dFdX, double[][] dFdY, double[][] d2FdXdY)
BicubicInterpolatingFunction(double[] x, double[] y, double[][] f, double[][] dFdX, double[][] dFdY, double[][] d2FdXdY, boolean initializeDerivatives)
PiecewiseBicubicSplineInterpolatingFunction(double[] x, double[] y, double[][] f)
TricubicInterpolatingFunction(double[] x, double[] y, double[] z, double[][][] f, double[][][] dFdX, double[][][] dFdY, double[][][] dFdZ, double[][][] d2FdXdY, double[][][] d2FdXdZ, double[][][] d2FdYdZ, double[][][] d3FdXdYdZ)
-
Uses of NonMonotonicSequenceException in org.apache.commons.math4.legacy.analysis.polynomials
Methods in org.apache.commons.math4.legacy.analysis.polynomials that throw NonMonotonicSequenceException Modifier and Type Method Description static double
PolynomialFunctionLagrangeForm. evaluate(double[] x, double[] y, double z)
Evaluate the Lagrange polynomial using Neville's Algorithm.static boolean
PolynomialFunctionLagrangeForm. verifyInterpolationArray(double[] x, double[] y, boolean abort)
Check that the interpolation arrays are valid.Constructors in org.apache.commons.math4.legacy.analysis.polynomials that throw NonMonotonicSequenceException Constructor Description PolynomialFunctionLagrangeForm(double[] x, double[] y)
Construct a Lagrange polynomial with the given abscissas and function values.PolynomialSplineFunction(double[] knots, PolynomialFunction[] polynomials)
Construct a polynomial spline function with the given segment delimiters and interpolating polynomials.
-