org.apache.commons.math3.analysis
Interface TrivariateFunction

All Known Implementing Classes:
TricubicSplineInterpolatingFunction, TriLinearIntervalsFunction

public interface TrivariateFunction

An interface representing a trivariate real function.

Since:
2.2
Version:
$Id: TrivariateFunction.java 7703 2013-02-12 17:12:25Z CardosoP $

Method Summary
 double value(double x, double y, double z)
          Compute the value for the function.
 

Method Detail

value

double value(double x,
             double y,
             double z)
Compute the value for the function.

Parameters:
x - x-coordinate for which the function value should be computed.
y - y-coordinate for which the function value should be computed.
z - z-coordinate for which the function value should be computed.
Returns:
the value.


Copyright © 2017 CNES. All Rights Reserved.