Package dev.nm.analysis.function.rn2r1
Interface TrivariateRealFunction
- All Superinterfaces:
Function<Vector,
,Double> RealScalarFunction
- All Known Implementing Classes:
AbstractTrivariateRealFunction
A trivariate real function takes three real arguments and outputs one real value.
That is, y = f(x1,x2,x3).
-
Nested Class Summary
Nested classes/interfaces inherited from interface dev.nm.analysis.function.Function
Function.EvaluationException
-
Method Summary
Modifier and TypeMethodDescriptiondouble
evaluate
(double x1, double x2, double x3) Evaluate y = f(x1,x2,x3).Methods inherited from interface dev.nm.analysis.function.Function
dimensionOfDomain, dimensionOfRange, evaluate
-
Method Details
-
evaluate
double evaluate(double x1, double x2, double x3) Evaluate y = f(x1,x2,x3).- Parameters:
x1
- x1x2
- x2x3
- x3- Returns:
- f(x1, x2, x3)
-