Package org.drip.spaces.instance
Class ValidatedR1
java.lang.Object
org.drip.spaces.instance.ValidatedR1
- All Implemented Interfaces:
GeneralizedValidatedVector
- Direct Known Subclasses:
ValidatedR1Combinatorial
,ValidatedR1Continuous
public class ValidatedR1 extends java.lang.Object implements GeneralizedValidatedVector
ValidatedR1 holds the Validated R1 Vector Instance Sequence and the Corresponding
Generalized Vector Space Type. The Reference we've used is:
- Carl, B., and I. Stephani (1990): Entropy, Compactness, and the Approximation of Operators Cambridge University Press Cambridge UK
- ValidatedR1 Constructor
- Retrieve the Instance Sequence
- Author:
- Lakshmi Krishnamurthy
-
Constructor Summary
Constructors Constructor Description ValidatedR1(R1GeneralizedVector r1GeneralizedVector, double[] instanceArray)
ValidatedR1 Constructor -
Method Summary
Modifier and Type Method Description double[]
instance()
Retrieve the Instance Sequenceint
sampleSize()
Retrieve the Sample SizeR1GeneralizedVector
tensorSpaceType()
Retrieve the Generalized Tensor Space TypeMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
ValidatedR1
public ValidatedR1(R1GeneralizedVector r1GeneralizedVector, double[] instanceArray) throws java.lang.ExceptionValidatedR1 Constructor- Parameters:
r1GeneralizedVector
- The R1 Tensor Space TypeinstanceArray
- The Data Instance- Throws:
java.lang.Exception
- Thrown if the Inputs are Invalid
-
-
Method Details
-
tensorSpaceType
Description copied from interface:GeneralizedValidatedVector
Retrieve the Generalized Tensor Space Type- Specified by:
tensorSpaceType
in interfaceGeneralizedValidatedVector
- Returns:
- The Generalized Tensor Space Type
-
instance
public double[] instance()Retrieve the Instance Sequence- Returns:
- The Instance Sequence
-
sampleSize
public int sampleSize()Description copied from interface:GeneralizedValidatedVector
Retrieve the Sample Size- Specified by:
sampleSize
in interfaceGeneralizedValidatedVector
- Returns:
- The Sample Size
-