WebCab Optimization
v2.6
(J2EE Edition)

com.webcab.ejb.math.optimization.sensitivityanalysis
Interface SensitivityAnalysisFunction

All Superinterfaces:
Remote, Serializable

public interface SensitivityAnalysisFunction
extends Serializable, Remote

This interface is used to implement n-dimensional functions which will be analyzed by the Sensitivity Grid Enterprise JavaBean. Multidimensional functions are functions that have more than one variable.

See Also:
SensitivityAnalysis

Method Summary
 int getNVariables()
           
 double getValueAtVector(double[] x)
          Computes the value of the function in the point x.
 

Method Detail

getValueAtVector

public double getValueAtVector(double[] x)
                        throws Exception
Computes the value of the function in the point x.

Parameters:
x - a vector containing the values of the variables
Returns:
the value of the function in the point x
Exception

getNVariables

public int getNVariables()
Returns:
The number of variables of the function

WebCab Optimization
v2.6
(J2EE Edition)