Package org.drip.spaces.metric
Class R1ContinuousBall
java.lang.Object
org.drip.spaces.tensor.R1ContinuousVector
org.drip.spaces.metric.R1Continuous
org.drip.spaces.metric.R1ContinuousBall
- All Implemented Interfaces:
GeneralizedMetricVectorSpace
,R1Normed
,GeneralizedVector
,R1GeneralizedVector
public class R1ContinuousBall extends R1Continuous
R1ContinuousBall extends the Continuous R1 Banach Space by enforcing the Closed Bounded
Metric. The Reference we've used is:
- Carl, B., and I. Stephani (1990): Entropy, Compactness, and the Approximation of Operators Cambridge University Press Cambridge UK
- Construct a R1ContinuousBall Instance of Unit Radius
- R1ContinuousBall Constructor
- Retrieve the Radius Norm
- Author:
- Lakshmi Krishnamurthy
-
Field Summary
Fields inherited from interface org.drip.spaces.metric.GeneralizedMetricVectorSpace
EUCLIDEAN_NORM, L2_NORM, LINFINITITY_NORM
-
Constructor Summary
Constructors Constructor Description R1ContinuousBall(double leftEdge, double rightEdge, R1Univariate r1Univariate, int pNorm, double normRadius)
R1ContinuousBall Constructor -
Method Summary
Modifier and Type Method Description static R1ContinuousBall
ClosedUnit(double dblLeftEdge, double dblRightEdge, R1Univariate distR1, int iPNorm)
Construct a R1ContinuousBall Instance of Unit Radiusdouble
normRadius()
Retrieve the Radius Normboolean
validateInstance(double instance)
Validate the Input Instance ArrayMethods inherited from class org.drip.spaces.metric.R1Continuous
borelMeasureSpaceExpectation, borelSigmaMeasure, pNorm, populationMetricNorm, populationMode, sampleMetricNorm, Standard, Supremum
Methods inherited from class org.drip.spaces.tensor.R1ContinuousVector
cardinality, hyperVolume, isPredictorBounded, leftEdge, match, rightEdge, Standard, subset
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.drip.spaces.tensor.GeneralizedVector
cardinality, hyperVolume, isPredictorBounded, leftEdge, match, rightEdge, subset
-
Constructor Details
-
R1ContinuousBall
public R1ContinuousBall(double leftEdge, double rightEdge, R1Univariate r1Univariate, int pNorm, double normRadius) throws java.lang.ExceptionR1ContinuousBall Constructor- Parameters:
leftEdge
- The Left EdgerightEdge
- The Right Edger1Univariate
- The R1 Borel Sigma MeasurepNorm
- The p-norm of the SpacenormRadius
- Radius Norm of the Unit Ball- Throws:
java.lang.Exception
- Thrown if the Inputs are Invalid
-
-
Method Details
-
ClosedUnit
public static final R1ContinuousBall ClosedUnit(double dblLeftEdge, double dblRightEdge, R1Univariate distR1, int iPNorm)Construct a R1ContinuousBall Instance of Unit Radius- Parameters:
dblLeftEdge
- The Left EdgedblRightEdge
- The Right EdgedistR1
- The R1 Borel Sigma MeasureiPNorm
- The p-norm of the Space- Returns:
- R1ContinuousBall Instance of Unit Radius
-
normRadius
public double normRadius()Retrieve the Radius Norm- Returns:
- The Radius Norm
-
validateInstance
public boolean validateInstance(double instance)Description copied from class:R1ContinuousVector
Validate the Input Instance Array- Specified by:
validateInstance
in interfaceR1GeneralizedVector
- Overrides:
validateInstance
in classR1ContinuousVector
- Parameters:
instance
- The Input Instance Array- Returns:
- TRUE - Instance is a Valid Entry in the Space
-