All Packages Class Hierarchy This Package Previous Next Index
Interface CH.epfl.lcvm.mccc.Function
- public interface Function
A general function interface.
-
call(Matrix)
- Returns the value of the function at the specified point
-
getDomain()
- Returns the dimension of the domain of the function
-
getRange()
- Returns the dimension of the range of the function
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.
getRange
public abstract int getRange()
- Returns the dimension of the range of the function
- Returns:
- the dimension of the range of the function.
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