Uses of Class
org.apache.commons.math3.exception.NonMonotonicSequenceException

Packages that use NonMonotonicSequenceException
org.apache.commons.math3.analysis.integration.gauss Gauss family of quadrature schemes. 
org.apache.commons.math3.analysis.interpolation Univariate real functions interpolation algorithms. 
org.apache.commons.math3.transform Implementations of transform methods, including Fast Fourier transforms. 
org.apache.commons.math3.util Convenience routines and common data structures used throughout the commons-math library. 
 

Uses of NonMonotonicSequenceException in org.apache.commons.math3.analysis.integration.gauss
 

Constructors in org.apache.commons.math3.analysis.integration.gauss that throw NonMonotonicSequenceException
GaussIntegrator(double[] points, double[] weights)
          Creates an integrator from the given points and weights.
GaussIntegrator(Pair<double[],double[]> pointsAndWeights)
          Creates an integrator from the given pair of points (first element of the pair) and weights (second element of the pair.
 

Uses of NonMonotonicSequenceException in org.apache.commons.math3.analysis.interpolation
 

Methods in org.apache.commons.math3.analysis.interpolation that throw NonMonotonicSequenceException
protected static double[] DividedDifferenceInterpolator.computeDividedDifference(double[] x, double[] y)
          Return a copy of the divided difference array.
 PolynomialFunctionNewtonForm DividedDifferenceInterpolator.interpolate(double[] x, double[] y)
          Compute an interpolating function for the dataset.
 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 a SplineInterpolator on the resulting fit.
 PolynomialSplineFunction SplineInterpolator.interpolate(double[] x, double[] y)
          Computes an interpolating function for the data set.
 PolynomialSplineFunction LinearInterpolator.interpolate(double[] x, double[] y)
          Computes a linear interpolating function for the data set.
 PolynomialFunctionLagrangeForm NevilleInterpolator.interpolate(double[] x, double[] y)
          Computes an interpolating function for the data set.
 BicubicSplineInterpolatingFunction BicubicSplineInterpolator.interpolate(double[] xval, double[] yval, double[][] fval)
          Compute an interpolating function for the dataset.
 TricubicSplineInterpolatingFunction TricubicSplineInterpolator.interpolate(double[] xval, double[] yval, double[] zval, double[][][] fval)
          Compute 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.math3.analysis.interpolation that throw NonMonotonicSequenceException
BicubicSplineInterpolatingFunction(double[] x, double[] y, double[][] f, double[][] dFdX, double[][] dFdY, double[][] d2FdXdY)
           
TricubicSplineInterpolatingFunction(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.math3.transform
 

Methods in org.apache.commons.math3.transform that throw NonMonotonicSequenceException
 double[] RealTransformer.transform(UnivariateFunction f, double min, double max, int n, TransformType type)
          Returns the (forward, inverse) transform of the specified real function, sampled on the specified interval.
 

Uses of NonMonotonicSequenceException in org.apache.commons.math3.util
 

Methods in org.apache.commons.math3.util that throw NonMonotonicSequenceException
static void MathArrays.checkOrder(double[] val)
          Check that the given array is sorted in strictly increasing order.
static void MathArrays.checkOrder(double[] val, MathArrays.OrderDirection dir, boolean strict)
          Check that the given array is sorted.
static boolean MathArrays.checkOrder(double[] val, MathArrays.OrderDirection dir, boolean strict, boolean abort)
          Check that the given array is sorted.
 



Copyright © 2003-2012 The Apache Software Foundation. All Rights Reserved.