com.kutsyy.util
Interface MvFunction

All Known Implementing Classes:
OrdinalSpatialAbstract

public interface MvFunction

put your documentation comment here

Author:
kutsyy

Method Summary
 double f(double[] x)
          multivariate function
 void g(double[] x, double[] g)
          vector of first derivitives of f(x)
 

Method Detail

f

public double f(double[] x)
         throws UnsupportedOperationException
multivariate function
Parameters:
x - point at which fanction should be calculated
Returns:
value of the function at x
Throws:
UnsupportedOperationException - Description of Exception

g

public void g(double[] x,
              double[] g)
       throws UnsupportedOperationException
vector of first derivitives of f(x)
Parameters:
x - point at which fanction should be calculated
g - vector of first derivitives evaluated at x
Throws:
UnsupportedOperationException - Description of Exception