R1Continuous.java

  1. package org.drip.spaces.metric;

  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>R1Continuous</i> implements the Normed, Bounded/Unbounded Continuous l<sub>p</sub> R<sup>1</sup>
  80.  * Spaces. 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/metric/README.md">Hilbert/Banach Normed Metric Spaces</a></li>
  96.  *  </ul>
  97.  * <br><br>
  98.  *
  99.  * @author Lakshmi Krishnamurthy
  100.  */

  101. public class R1Continuous extends org.drip.spaces.tensor.R1ContinuousVector implements
  102.     org.drip.spaces.metric.R1Normed {
  103.     private int _iPNorm = -1;
  104.     private org.drip.measure.continuous.R1Univariate _distR1 = null;

  105.     /**
  106.      * Construct the Standard l^p R^1 Continuous Space Instance
  107.      *
  108.      * @param dblLeftEdge The Left Edge
  109.      * @param dblRightEdge The Right Edge
  110.      * @param distR1 The R^1 Borel Sigma Measure
  111.      * @param iPNorm The p-norm of the Space
  112.      *
  113.      * @return The Standard l^p R^1 Continuous Space Instance
  114.      */

  115.     public static final R1Continuous Standard (
  116.         final double dblLeftEdge,
  117.         final double dblRightEdge,
  118.         final org.drip.measure.continuous.R1Univariate distR1,
  119.         final int iPNorm)
  120.     {
  121.         try {
  122.             return new R1Continuous (dblLeftEdge, dblRightEdge, distR1, iPNorm);
  123.         } catch (java.lang.Exception e) {
  124.             e.printStackTrace();
  125.         }

  126.         return null;
  127.     }

  128.     /**
  129.      * Construct the Supremum (i.e., l^Infinity) R^1 Continuous Space Instance
  130.      *
  131.      * @param dblLeftEdge The Left Edge
  132.      * @param dblRightEdge The Right Edge
  133.      * @param distR1 The R^1 Borel Sigma Measure
  134.      *
  135.      * @return The Supremum (i.e., l^Infinity) R^1 Continuous Space Instance
  136.      */

  137.     public static final R1Continuous Supremum (
  138.         final double dblLeftEdge,
  139.         final double dblRightEdge,
  140.         final org.drip.measure.continuous.R1Univariate distR1)
  141.     {
  142.         try {
  143.             return new R1Continuous (dblLeftEdge, dblRightEdge, distR1, java.lang.Integer.MAX_VALUE);
  144.         } catch (java.lang.Exception e) {
  145.             e.printStackTrace();
  146.         }

  147.         return null;
  148.     }

  149.     /**
  150.      * R1Continuous Space Constructor
  151.      *
  152.      * @param dblLeftEdge The Left Edge
  153.      * @param dblRightEdge The Right Edge
  154.      * @param distR1 The R^1 Borel Sigma Measure
  155.      * @param iPNorm The p-norm of the Space
  156.      *
  157.      * @throws java.lang.Exception Thrown if the Inputs are Invalid
  158.      */

  159.     public R1Continuous (
  160.         final double dblLeftEdge,
  161.         final double dblRightEdge,
  162.         final org.drip.measure.continuous.R1Univariate distR1,
  163.         final int iPNorm)
  164.         throws java.lang.Exception
  165.     {
  166.         super (dblLeftEdge, dblRightEdge);

  167.         if (0 > (_iPNorm = iPNorm))
  168.             throw new java.lang.Exception ("R1Continuous Constructor: Invalid p-norm");

  169.         _distR1 = distR1;
  170.     }

  171.     @Override public int pNorm()
  172.     {
  173.         return _iPNorm;
  174.     }

  175.     @Override public org.drip.measure.continuous.R1Univariate borelSigmaMeasure()
  176.     {
  177.         return _distR1;
  178.     }

  179.     @Override public double sampleMetricNorm (
  180.         final double dblX)
  181.         throws java.lang.Exception
  182.     {
  183.         if (!validateInstance (dblX))
  184.             throw new java.lang.Exception ("R1Continuous::sampleMetricNorm => Invalid Inputs");

  185.         return java.lang.Math.abs (dblX);
  186.     }

  187.     @Override public double populationMode()
  188.         throws java.lang.Exception
  189.     {
  190.         if (null == _distR1)
  191.             throw new java.lang.Exception ("R1Continuous::populationMode => Invalid Inputs");

  192.         org.drip.function.definition.R1ToR1 funcR1ToR1 = new org.drip.function.definition.R1ToR1 (null) {
  193.             @Override public double evaluate (
  194.                 final double dblX)
  195.                 throws java.lang.Exception
  196.             {
  197.                 return _distR1.density (dblX);
  198.             }
  199.         };

  200.         org.drip.function.definition.VariateOutputPair vopMode = funcR1ToR1.maxima (leftEdge(), rightEdge());

  201.         if (null == vopMode)
  202.             throw new java.lang.Exception ("R1Continuous::populationMode => Cannot compute VOP Mode");

  203.         return vopMode.variates()[0];
  204.     }

  205.     @Override public double populationMetricNorm()
  206.         throws java.lang.Exception
  207.     {
  208.         if (null == _distR1)
  209.             throw new java.lang.Exception ("R1Continuous::populationMetricNorm => Invalid Inputs");

  210.         org.drip.function.definition.R1ToR1 funcR1ToR1 = new org.drip.function.definition.R1ToR1 (null) {
  211.             @Override public double evaluate (
  212.                 final double dblX)
  213.                 throws java.lang.Exception
  214.             {
  215.                 return sampleMetricNorm (dblX) * _distR1.density (dblX);
  216.             }
  217.         };

  218.         return funcR1ToR1.integrate (leftEdge(), rightEdge());
  219.     }

  220.     @Override public double borelMeasureSpaceExpectation (
  221.         final org.drip.function.definition.R1ToR1 funcR1ToR1)
  222.         throws java.lang.Exception
  223.     {
  224.         if (null == funcR1ToR1 || null == _distR1)
  225.             throw new java.lang.Exception ("R1Continuous::borelMeasureSpaceExpectation => Invalid Inputs");

  226.         org.drip.function.definition.R1ToR1 funcDensityR1ToR1 = new org.drip.function.definition.R1ToR1
  227.             (null) {
  228.             @Override public double evaluate (
  229.                 final double dblX)
  230.                 throws java.lang.Exception
  231.             {
  232.                 return funcR1ToR1.evaluate (dblX) * _distR1.density (dblX);
  233.             }
  234.         };

  235.         return funcDensityR1ToR1.integrate (leftEdge(), rightEdge());
  236.     }
  237. }