Uses of Class
org.apache.commons.math4.legacy.exception.NotFiniteNumberException
-
Packages that use NotFiniteNumberException Package Description org.apache.commons.math4.legacy.analysis.interpolation Univariate real functions interpolation algorithms.org.apache.commons.math4.legacy.distribution Implementations of probability distributions. -
-
Uses of NotFiniteNumberException in org.apache.commons.math4.legacy.analysis.interpolation
Methods in org.apache.commons.math4.legacy.analysis.interpolation that throw NotFiniteNumberException Modifier and Type Method Description 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.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. -
Uses of NotFiniteNumberException in org.apache.commons.math4.legacy.distribution
Constructors in org.apache.commons.math4.legacy.distribution that throw NotFiniteNumberException Constructor Description EnumeratedDistribution(List<Pair<T,Double>> pmf)
Create an enumerated distribution using the given random number generator and probability mass function enumeration.EnumeratedIntegerDistribution(int[] singletons, double[] probabilities)
Create a discrete distribution.EnumeratedRealDistribution(double[] singletons, double[] probabilities)
Create a discrete real-valued distribution using the given random number generator and probability mass function enumeration.
-