Package org.drip.spaces.cover
Interface FunctionClassCoveringBounds
- All Known Implementing Classes:
L1R1CoveringBounds,ScaleSensitiveCoveringBounds
public interface FunctionClassCoveringBounds
FunctionClassCoveringBounds implements the estimate Lower/Upper Bounds and/or Absolute Values of
the Covering Number for the Function Class. The Main References are:
- Carl, B., and I. Stephani (1990): Entropy, Compactness, and the Approximation of Operators Cambridge University Press Cambridge UK
- P. L. Bartlett, S. R. Kulkarni, and S. E. Posner (1997): Covering Numbers for Real-valued Function Classes IEEE Transactions on Information Theory 45 (5) 1721-1724
- Log of the Lower Bound of the Function Covering Number
- Log of the Upper Bound of the Function Covering Number
- Author:
- Lakshmi Krishnamurthy
-
Method Summary
Modifier and Type Method Description doublelogLowerBound(double cover)Log of the Lower Bound of the Function Covering NumberdoublelogUpperBound(double cover)Log of the Upper Bound of the Function Covering Number
-
Method Details
-
logLowerBound
double logLowerBound(double cover) throws java.lang.ExceptionLog of the Lower Bound of the Function Covering Number- Parameters:
cover- The Size of the Cover- Returns:
- Log of the Lower Bound of the Function Covering Number
- Throws:
java.lang.Exception- Thrown if the Inputs are Invalid
-
logUpperBound
double logUpperBound(double cover) throws java.lang.ExceptionLog of the Upper Bound of the Function Covering Number- Parameters:
cover- The Size of the Cover- Returns:
- Log of the Upper Bound of the Function Covering Number
- Throws:
java.lang.Exception- Thrown if the Inputs are Invalid
-