edu.northwestern.at.utils.math
Interface DyadicFunction


public interface DyadicFunction

Interface for a dyadic two argument function.


Method Summary
 double f(double x1, double x2)
          Evaluates a dyadic scalar function.
 

Method Detail

f

double f(double x1,
         double x2)
Evaluates a dyadic scalar function.

Parameters:
x1 - Values at which function is to be evaluated.
x2 -
Returns:
Result of evaluating function using x1, x2.