Uses of Class
org.apache.commons.math4.legacy.exception.NonMonotonicSequenceException
-
Packages that use NonMonotonicSequenceException Package Description org.apache.commons.math4.legacy.analysis.function Thefunctionpackage 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.PolynomialSplineFunctionAkimaSplineInterpolator. interpolate(double[] xvals, double[] yvals)Computes an interpolating function for the data set.BicubicInterpolatingFunctionBicubicInterpolator. interpolate(double[] xval, double[] yval, double[][] fval)Compute an interpolating function for the dataset.BivariateFunctionBivariateGridInterpolator. interpolate(double[] xval, double[] yval, double[][] fval)Compute an interpolating function for the dataset.PolynomialSplineFunctionClampedSplineInterpolator. interpolate(double[] x, double[] y, double fpo, double fpn)Computes an interpolating function for the data set.PolynomialFunctionNewtonFormDividedDifferenceInterpolator. interpolate(double[] x, double[] y)Compute an interpolating function for the dataset.PolynomialSplineFunctionLinearInterpolator. interpolate(double[] x, double[] y)Computes a linear interpolating function for the data set.PolynomialSplineFunctionLoessInterpolator. 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 aSplineInterpolatoron the resulting fit.PolynomialFunctionLagrangeFormNevilleInterpolator. interpolate(double[] x, double[] y)Computes an interpolating function for the data set.PiecewiseBicubicSplineInterpolatingFunctionPiecewiseBicubicSplineInterpolator. interpolate(double[] xval, double[] yval, double[][] fval)Compute an interpolating function for the dataset.TricubicInterpolatingFunctionTricubicInterpolator. interpolate(double[] xval, double[] yval, double[] zval, double[][][] fval)Compute an interpolating function for the dataset.TrivariateFunctionTrivariateGridInterpolator. interpolate(double[] xval, double[] yval, double[] zval, double[][][] fval)Compute an interpolating function for the dataset.UnivariateFunctionUnivariatePeriodicInterpolator. 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 doublePolynomialFunctionLagrangeForm. evaluate(double[] x, double[] y, double z)Evaluate the Lagrange polynomial using Neville's Algorithm.static booleanPolynomialFunctionLagrangeForm. 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.
-