NormedRxToNormedR1.java

  1. package org.drip.spaces.rxtor1;

  2. /*
  3.  * -*- mode: java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  4.  */

  5. /*!
  6.  * Copyright (C) 2020 Lakshmi Krishnamurthy
  7.  * Copyright (C) 2019 Lakshmi Krishnamurthy
  8.  * Copyright (C) 2018 Lakshmi Krishnamurthy
  9.  * Copyright (C) 2017 Lakshmi Krishnamurthy
  10.  * Copyright (C) 2016 Lakshmi Krishnamurthy
  11.  * Copyright (C) 2015 Lakshmi Krishnamurthy
  12.  *
  13.  *  This file is part of DROP, an open-source library targeting analytics/risk, transaction cost analytics,
  14.  *      asset liability management analytics, capital, exposure, and margin analytics, valuation adjustment
  15.  *      analytics, and portfolio construction analytics within and across fixed income, credit, commodity,
  16.  *      equity, FX, and structured products. It also includes auxiliary libraries for algorithm support,
  17.  *      numerical analysis, numerical optimization, spline builder, model validation, statistical learning,
  18.  *      and computational support.
  19.  *  
  20.  *      https://lakshmidrip.github.io/DROP/
  21.  *  
  22.  *  DROP is composed of three modules:
  23.  *  
  24.  *  - DROP Product Core - https://lakshmidrip.github.io/DROP-Product-Core/
  25.  *  - DROP Portfolio Core - https://lakshmidrip.github.io/DROP-Portfolio-Core/
  26.  *  - DROP Computational Core - https://lakshmidrip.github.io/DROP-Computational-Core/
  27.  *
  28.  *  DROP Product Core implements libraries for the following:
  29.  *  - Fixed Income Analytics
  30.  *  - Loan Analytics
  31.  *  - Transaction Cost Analytics
  32.  *
  33.  *  DROP Portfolio Core implements libraries for the following:
  34.  *  - Asset Allocation Analytics
  35.  *  - Asset Liability Management Analytics
  36.  *  - Capital Estimation Analytics
  37.  *  - Exposure Analytics
  38.  *  - Margin Analytics
  39.  *  - XVA Analytics
  40.  *
  41.  *  DROP Computational Core implements libraries for the following:
  42.  *  - Algorithm Support
  43.  *  - Computation Support
  44.  *  - Function Analysis
  45.  *  - Model Validation
  46.  *  - Numerical Analysis
  47.  *  - Numerical Optimizer
  48.  *  - Spline Builder
  49.  *  - Statistical Learning
  50.  *
  51.  *  Documentation for DROP is Spread Over:
  52.  *
  53.  *  - Main                     => https://lakshmidrip.github.io/DROP/
  54.  *  - Wiki                     => https://github.com/lakshmiDRIP/DROP/wiki
  55.  *  - GitHub                   => https://github.com/lakshmiDRIP/DROP
  56.  *  - Repo Layout Taxonomy     => https://github.com/lakshmiDRIP/DROP/blob/master/Taxonomy.md
  57.  *  - Javadoc                  => https://lakshmidrip.github.io/DROP/Javadoc/index.html
  58.  *  - Technical Specifications => https://github.com/lakshmiDRIP/DROP/tree/master/Docs/Internal
  59.  *  - Release Versions         => https://lakshmidrip.github.io/DROP/version.html
  60.  *  - Community Credits        => https://lakshmidrip.github.io/DROP/credits.html
  61.  *  - Issues Catalog           => https://github.com/lakshmiDRIP/DROP/issues
  62.  *  - JUnit                    => https://lakshmidrip.github.io/DROP/junit/index.html
  63.  *  - Jacoco                   => https://lakshmidrip.github.io/DROP/jacoco/index.html
  64.  *
  65.  *  Licensed under the Apache License, Version 2.0 (the "License");
  66.  *      you may not use this file except in compliance with the License.
  67.  *  
  68.  *  You may obtain a copy of the License at
  69.  *      http://www.apache.org/licenses/LICENSE-2.0
  70.  *  
  71.  *  Unless required by applicable law or agreed to in writing, software
  72.  *      distributed under the License is distributed on an "AS IS" BASIS,
  73.  *      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  74.  *  
  75.  *  See the License for the specific language governing permissions and
  76.  *      limitations under the License.
  77.  */

  78. /**
  79.  * <i>NormedRxToNormedR1</i> is the Abstract Class that exposes f : Normed R<sup>x</sup> (x .gte. 1) To
  80.  * Normed R<sup>1</sup> Function Space. The Reference we've used is:
  81.  *
  82.  * <br><br>
  83.  *  <ul>
  84.  *      <li>
  85.  *          Carl, B., and I. Stephani (1990): <i>Entropy, Compactness, and the Approximation of Operators</i>
  86.  *              <b>Cambridge University Press</b> Cambridge UK
  87.  *      </li>
  88.  *  </ul>
  89.  *
  90.  * <br><br>
  91.  *  <ul>
  92.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/ComputationalCore.md">Computational Core Module</a></li>
  93.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/StatisticalLearningLibrary.md">Statistical Learning Library</a></li>
  94.  *      <li><b>Project</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/spaces/README.md">R<sup>1</sup> and R<sup>d</sup> Vector/Tensor Spaces (Validated and/or Normed), and Function Classes</a></li>
  95.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/spaces/rxtor1/README.md">R<sup>x</sup> To R<sup>1</sup> Normed Function Spaces</a></li>
  96.  *  </ul>
  97.  * <br><br>
  98.  *
  99.  * @author Lakshmi Krishnamurthy
  100.  */

  101. public abstract class NormedRxToNormedR1 {

  102.     /**
  103.      * Retrieve the Input Metric Vector Space
  104.      *
  105.      * @return The Input Metric Vector Space
  106.      */

  107.     public abstract org.drip.spaces.metric.GeneralizedMetricVectorSpace inputMetricVectorSpace();

  108.     /**
  109.      * Retrieve the Output Metric Vector Space
  110.      *
  111.      * @return The Output Metric Vector Space
  112.      */

  113.     public abstract org.drip.spaces.metric.R1Normed outputMetricVectorSpace();

  114.     /**
  115.      * Retrieve the Sample Supremum Norm
  116.      *
  117.      * @param gvvi The Validated Vector Space Instance
  118.      *
  119.      * @return The Sample Supremum Norm
  120.      *
  121.      * @throws java.lang.Exception Thrown if the Supremum Norm cannot be computed
  122.      */

  123.     public abstract double sampleSupremumNorm (
  124.         final org.drip.spaces.instance.GeneralizedValidatedVector gvvi)
  125.         throws java.lang.Exception;

  126.     /**
  127.      * Retrieve the Sample Metric Norm
  128.      *
  129.      * @param gvvi The Validated Vector Space Instance
  130.      *
  131.      * @return The Sample Metric Norm
  132.      *
  133.      * @throws java.lang.Exception Thrown if the Sample Metric Norm cannot be computed
  134.      */

  135.     public abstract double sampleMetricNorm (
  136.         final org.drip.spaces.instance.GeneralizedValidatedVector gvvi)
  137.         throws java.lang.Exception;

  138.     /**
  139.      * Retrieve the Sample Covering Number
  140.      *
  141.      * @param gvvi The Validated Vector Space Instance
  142.      * @param dblCover The Cover
  143.      *
  144.      * @return The Sample Covering Number
  145.      *
  146.      * @throws java.lang.Exception Thrown if the Sample Covering Number cannot be computed
  147.      */

  148.     public double sampleCoveringNumber (
  149.         final org.drip.spaces.instance.GeneralizedValidatedVector gvvi,
  150.         final double dblCover)
  151.         throws java.lang.Exception
  152.     {
  153.         if (!org.drip.numerical.common.NumberUtil.IsValid (dblCover) || 0. >= dblCover)
  154.             throw new java.lang.Exception ("NormedRxToNormedR1::sampleCoveringNumber => Invalid Inputs");

  155.         return sampleMetricNorm (gvvi) / dblCover;
  156.     }

  157.     /**
  158.      * Retrieve the Sample Supremum Covering Number
  159.      *
  160.      * @param gvvi The Validated Vector Space Instance
  161.      * @param dblCover The Cover
  162.      *
  163.      * @return The Sample Supremum Covering Number
  164.      *
  165.      * @throws java.lang.Exception Thrown if the Sample Covering Number cannot be computed
  166.      */

  167.     public double sampleSupremumCoveringNumber (
  168.         final org.drip.spaces.instance.GeneralizedValidatedVector gvvi,
  169.         final double dblCover)
  170.         throws java.lang.Exception
  171.     {
  172.         if (!org.drip.numerical.common.NumberUtil.IsValid (dblCover) || 0. >= dblCover)
  173.             throw new java.lang.Exception
  174.                 ("NormedRxToNormedR1::sampleSupremumCoveringNumber => Invalid Inputs");

  175.         return sampleSupremumNorm (gvvi) / dblCover;
  176.     }

  177.     /**
  178.      * Retrieve the Population ESS (Essential Spectrum)
  179.      *
  180.      * @return The Population ESS (Essential Spectrum)
  181.      *
  182.      * @throws java.lang.Exception Thrown if the Population ESS (Essential Spectrum) cannot be computed
  183.      */

  184.     public abstract double populationESS()
  185.         throws java.lang.Exception;

  186.     /**
  187.      * Retrieve the Population Metric Norm
  188.      *
  189.      * @return The Population Metric Norm
  190.      *
  191.      * @throws java.lang.Exception Thrown if the Population Metric Norm cannot be computed
  192.      */

  193.     public abstract double populationMetricNorm()
  194.         throws java.lang.Exception;

  195.     /**
  196.      * Retrieve the Population Supremum Metric Norm
  197.      *
  198.      * @return The Population Supremum Metric Norm
  199.      *
  200.      * @throws java.lang.Exception Thrown if the Population Supremum Metric Norm cannot be computed
  201.      */

  202.     public double populationSupremumMetricNorm()
  203.         throws java.lang.Exception
  204.     {
  205.         return populationESS();
  206.     }

  207.     /**
  208.      * Retrieve the Population Covering Number
  209.      *
  210.      * @param dblCover The Cover
  211.      *
  212.      * @return The Population Covering Number
  213.      *
  214.      * @throws java.lang.Exception Thrown if the Population Covering Number cannot be computed
  215.      */

  216.     public double populationCoveringNumber (
  217.         final double dblCover)
  218.         throws java.lang.Exception
  219.     {
  220.         if (!org.drip.numerical.common.NumberUtil.IsValid (dblCover) || 0. >= dblCover)
  221.             throw new java.lang.Exception ("NormedRxToNormedR1::populationCoveringNumber => Invalid Inputs");

  222.         return populationMetricNorm() / dblCover;
  223.     }

  224.     /**
  225.      * Retrieve the Population Supremum Covering Number
  226.      *
  227.      * @param dblCover The Cover
  228.      *
  229.      * @return The Population Supremum Covering Number
  230.      *
  231.      * @throws java.lang.Exception Thrown if the Population Supremum Covering Number cannot be computed
  232.      */

  233.     public double populationSupremumCoveringNumber (
  234.         final double dblCover)
  235.         throws java.lang.Exception
  236.     {
  237.         if (!org.drip.numerical.common.NumberUtil.IsValid (dblCover) || 0. >= dblCover)
  238.             throw new java.lang.Exception
  239.                 ("NormedRxToNormedR1::populationSupremumCoveringNumber => Invalid Inputs");

  240.         return populationSupremumMetricNorm() / dblCover;
  241.     }
  242. }