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 TypeMethodDescriptionvoid
AccurateInterpolatingPolynomialEstimator.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 void
InterpolatingPolynomialEstimator.estimate
(double[] x, double[] y, double[] cof) Estimates polynomial coefficients from provided x and y points.void
InterpolatingPolynomialEstimator.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.double
BaseInterpolator.interpolate
(double x) Given a value x, returns an interpolated value, using data pointed to byBaseInterpolator.xx
andBaseInterpolator.yy
.double
BicubicSpline2DInterpolator.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.double
KrigingInterpolator.interpolate
(double[] xstar) Returns interpolated value at provided point.double
KrigingInterpolator.interpolate
(double[] xstar, double[] esterr) Returns interpolated value at provided point, and estimated error.double
Polynomial2DInterpolator.interpolate
(double x1p, double x2p) Given values x1p an x2p, returns an interpolated value.abstract double
BaseInterpolator.rawinterp
(int jlo, double x) Actual interpolation method to be implemented by subclasses.double
CubicSplineInterpolator.rawinterp
(int jl, double x) Actual interpolation method.double
PolynomialInterpolator.rawinterp
(int jl, double x) Actual interpolation method.double
RationalInterpolator.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.