All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface CH.epfl.lcvm.mccc.Function

public interface Function
A general function interface.


Method Index

 o call(Matrix)
Returns the value of the function at the specified point
 o getDomain()
Returns the dimension of the domain of the function
 o getRange()
Returns the dimension of the range of the function

Methods

 o call
 public abstract Matrix call(Matrix value)
Returns the value of the function at the specified point

Parameters:
value - the point at which tp call the function
Returns:
the return value of the function.
 o getRange
 public abstract int getRange()
Returns the dimension of the range of the function

Returns:
the dimension of the range of the function.
 o getDomain
 public abstract int getDomain()
Returns the dimension of the domain of the function

Returns:
the dimension of the domain of the function.

All Packages  Class Hierarchy  This Package  Previous  Next  Index