Uses of Interface
org.hipparchus.analysis.BivariateFunction
Packages that use BivariateFunction
Package
Description
Parent package for common numerical analysis procedures, including root finding,
function interpolation and integration.
The
function package contains function objects that wrap the
methods contained in Math, as well as common
mathematical functions such as the gaussian and sinc functions.Univariate real functions interpolation algorithms.
-
Uses of BivariateFunction in org.hipparchus.analysis
Methods in org.hipparchus.analysis with parameters of type BivariateFunctionModifier and TypeMethodDescriptionstatic MultivariateFunctionFunctionUtils.collector(BivariateFunction combiner, double initialValue) Returns a MultivariateFunction h(x[]) defined bystatic MultivariateFunctionFunctionUtils.collector(BivariateFunction combiner, UnivariateFunction f, double initialValue) Returns a MultivariateFunction h(x[]) defined bystatic UnivariateFunctionFunctionUtils.combine(BivariateFunction combiner, UnivariateFunction f, UnivariateFunction g) Returns the univariate functionh(x) = combiner(f(x), g(x)).static UnivariateFunctionFunctionUtils.fix1stArgument(BivariateFunction f, double fixed) Creates a unary function by fixing the first argument of a binary function.static UnivariateFunctionFunctionUtils.fix2ndArgument(BivariateFunction f, double fixed) Creates a unary function by fixing the second argument of a binary function. -
Uses of BivariateFunction in org.hipparchus.analysis.function
Classes in org.hipparchus.analysis.function that implement BivariateFunctionModifier and TypeClassDescriptionclassAdd the two operands.classArc-tangent function.classDivide the first operand by the second.classMaximum function.classMinimum function.classMultiply the two operands.classPower function.classSubtract the second operand from the first. -
Uses of BivariateFunction in org.hipparchus.analysis.interpolation
Classes in org.hipparchus.analysis.interpolation that implement BivariateFunctionModifier and TypeClassDescriptionclassFunction that implements the bicubic spline interpolation.classInterpolate grid data using bi-linear interpolation.classFunction that implements the bicubic spline interpolation.Methods in org.hipparchus.analysis.interpolation that return BivariateFunctionModifier and TypeMethodDescriptionBivariateGridInterpolator.interpolate(double[] xval, double[] yval, double[][] fval) Compute an interpolating function for the dataset.