Interface TrivariateRealFunction

All Superinterfaces:
Function<Vector,Double>, RealScalarFunction
All Known Implementing Classes:
AbstractTrivariateRealFunction

public interface TrivariateRealFunction extends RealScalarFunction
A trivariate real function takes three real arguments and outputs one real value. That is, y = f(x1,x2,x3).
  • Method Details

    • evaluate

      double evaluate(double x1, double x2, double x3)
      Evaluate y = f(x1,x2,x3).
      Parameters:
      x1 - x1
      x2 - x2
      x3 - x3
      Returns:
      f(x1, x2, x3)