Uses of Class
com.irurueta.numerical.interpolation.InterpolationException
Packages that use InterpolationException
-
Uses of InterpolationException in com.irurueta.numerical.interpolation
Methods in com.irurueta.numerical.interpolation that throw InterpolationExceptionModifier and TypeMethodDescriptionvoidAccurateInterpolatingPolynomialEstimator.estimate(double[] xa, double[] ya, double[] cof) Estimates polynomial coefficients from provided x and y points.InterpolatingPolynomialEstimator.estimate(double[] x, double[] y) Estimates polynomial from provided x and y points.abstract voidInterpolatingPolynomialEstimator.estimate(double[] x, double[] y, double[] cof) Estimates polynomial coefficients from provided x and y points.voidInterpolatingPolynomialEstimator.estimate(double[] x, double[] y, Polynomial result) Estimates polynomial from provided x and y points.double[]InterpolatingPolynomialEstimator.estimateCoefficients(double[] x, double[] y) Estimates polynomial coefficients from provided x and y points.doubleBaseInterpolator.interpolate(double x) Given a value x, returns an interpolated value, using data pointed to byBaseInterpolator.xxandBaseInterpolator.yy.doubleBicubicSpline2DInterpolator.interpolate(double x1p, double x2p) Given values x1p an x2p, returns an interpolated value.double[]CurveInterpolator.interpolate(double t) Interpolates a point on the stored curve.doubleKrigingInterpolator.interpolate(double[] xstar) Returns interpolated value at provided point.doubleKrigingInterpolator.interpolate(double[] xstar, double[] esterr) Returns interpolated value at provided point, and estimated error.doublePolynomial2DInterpolator.interpolate(double x1p, double x2p) Given values x1p an x2p, returns an interpolated value.abstract doubleBaseInterpolator.rawinterp(int jlo, double x) Actual interpolation method to be implemented by subclasses.doubleCubicSplineInterpolator.rawinterp(int jl, double x) Actual interpolation method.doublePolynomialInterpolator.rawinterp(int jl, double x) Actual interpolation method.doubleRationalInterpolator.rawinterp(int jl, double x) Actual interpolation method.Constructors in com.irurueta.numerical.interpolation that throw InterpolationExceptionModifierConstructorDescriptionCurveInterpolator(com.irurueta.algebra.Matrix ptsin) Constructor assuming that curve is NOT closed.CurveInterpolator(com.irurueta.algebra.Matrix ptsin, boolean close) Constructor.KrigingInterpolator(com.irurueta.algebra.Matrix xx, double[] yy) Constructor.KrigingInterpolator(com.irurueta.algebra.Matrix xx, double[] yy, KrigingInterpolator.Variogram vargram) Constructor.KrigingInterpolator(com.irurueta.algebra.Matrix xx, double[] yy, KrigingInterpolator.Variogram vargram, double[] err) Constructor.RadialBasisFunctionInterpolator(com.irurueta.algebra.Matrix ptss, double[] valss, RadialBasisFunction func) Constructor.RadialBasisFunctionInterpolator(com.irurueta.algebra.Matrix ptss, double[] valss, RadialBasisFunction func, boolean nrbf) Constructor.