NormedR1ToL1R1Finite.java

  1. package org.drip.spaces.functionclass;

  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>NormedR1ToL1R1Finite</i> implements the Class f E F : Normed R<sup>1</sup> To L<sub>1</sub>
  80.  * R<sup>1</sup> Spaces of Finite Functions. 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/functionclass/README.md">Normed Finite Spaces Function Class</a></li>
  96.  *  </ul>
  97.  * <br><br>
  98.  *
  99.  * @author Lakshmi Krishnamurthy
  100.  */

  101. public class NormedR1ToL1R1Finite extends org.drip.spaces.functionclass.NormedR1ToNormedR1Finite {

  102.     /**
  103.      * Create Bounded R^1 To Bounded L1 R^1 Function Class for the specified Bounded Class of Finite
  104.      *  Functions
  105.      *
  106.      * @param dblMaureyConstant Maurey Constant
  107.      * @param aR1ToR1 The Bounded R^1 To Bounded R^1 Function Set
  108.      * @param dblPredictorSupport The Set Predictor Support
  109.      * @param dblResponseBound The Set Response Bound
  110.      *
  111.      * @return The Bounded R^1 To Bounded R^1 Function Class for the specified Function Set
  112.      */

  113.     public static final NormedR1ToL1R1Finite BoundedPredictorBoundedResponse (
  114.         final double dblMaureyConstant,
  115.         final org.drip.function.definition.R1ToR1[] aR1ToR1,
  116.         final double dblPredictorSupport,
  117.         final double dblResponseBound)
  118.     {
  119.         if (null == aR1ToR1) return null;

  120.         int iNumFunction = aR1ToR1.length;
  121.         org.drip.spaces.rxtor1.NormedR1ToNormedR1[] aR1ToR1FunctionSpace = new
  122.             org.drip.spaces.rxtor1.NormedR1ToNormedR1[iNumFunction];

  123.         if (0 == iNumFunction) return null;

  124.         try {
  125.             org.drip.spaces.metric.R1Continuous r1ContinuousInput = new org.drip.spaces.metric.R1Continuous
  126.                 (-0.5 * dblPredictorSupport, 0.5 * dblPredictorSupport, null, 1);

  127.             org.drip.spaces.metric.R1Continuous r1ContinuousOutput = new org.drip.spaces.metric.R1Continuous
  128.                 (-0.5 * dblResponseBound, 0.5 * dblResponseBound, null, 1);

  129.             for (int i = 0; i < iNumFunction; ++i)
  130.                 aR1ToR1FunctionSpace[i] = new org.drip.spaces.rxtor1.NormedR1ContinuousToR1Continuous
  131.                     (r1ContinuousInput, r1ContinuousOutput, aR1ToR1[i]);

  132.             return new NormedR1ToL1R1Finite (dblMaureyConstant, aR1ToR1FunctionSpace);
  133.         } catch (java.lang.Exception e) {
  134.             e.printStackTrace();
  135.         }

  136.         return null;
  137.     }

  138.     protected NormedR1ToL1R1Finite (
  139.         final double dblMaureyConstant,
  140.         final org.drip.spaces.rxtor1.NormedR1ToNormedR1[] aR1ToR1FunctionSpace)
  141.         throws java.lang.Exception
  142.     {
  143.         super (dblMaureyConstant, aR1ToR1FunctionSpace);
  144.     }

  145.     @Override public org.drip.spaces.cover.FunctionClassCoveringBounds agnosticCoveringNumberBounds()
  146.     {
  147.         org.drip.spaces.rxtor1.NormedR1ToNormedR1[] aNormedR1ToNormedR1 =
  148.             (org.drip.spaces.rxtor1.NormedR1ToNormedR1[]) functionSpaces();

  149.         int iNumFunction = aNormedR1ToNormedR1.length;
  150.         double dblResponseLowerBound = java.lang.Double.NaN;
  151.         double dblResponseUpperBound = java.lang.Double.NaN;
  152.         double dblPredictorLowerBound = java.lang.Double.NaN;
  153.         double dblPredictorUpperBound = java.lang.Double.NaN;

  154.         for (int i = 0; i < iNumFunction; ++i) {
  155.             org.drip.spaces.rxtor1.NormedR1ToNormedR1 r1Tor1 = aNormedR1ToNormedR1[i];

  156.             org.drip.spaces.metric.R1Normed runsInput = r1Tor1.inputMetricVectorSpace();

  157.             org.drip.spaces.metric.R1Normed runsOutput = r1Tor1.outputMetricVectorSpace();

  158.             if (!runsInput.isPredictorBounded() || !runsOutput.isPredictorBounded()) return null;

  159.             double dblResponseLeftBound = runsOutput.leftEdge();

  160.             double dblPredictorLeftBound = runsInput.leftEdge();

  161.             double dblResponseRightBound = runsOutput.rightEdge();

  162.             double dblPredictorRightBound = runsInput.rightEdge();

  163.             if (!org.drip.numerical.common.NumberUtil.IsValid (dblPredictorLowerBound))
  164.                 dblPredictorLowerBound = dblPredictorLeftBound;
  165.             else {
  166.                 if (dblPredictorLowerBound > dblPredictorLeftBound)
  167.                     dblPredictorLowerBound = dblPredictorLeftBound;
  168.             }

  169.             if (!org.drip.numerical.common.NumberUtil.IsValid (dblPredictorUpperBound))
  170.                 dblPredictorUpperBound = dblPredictorRightBound;
  171.             else {
  172.                 if (dblPredictorUpperBound < dblPredictorRightBound)
  173.                     dblPredictorUpperBound = dblPredictorRightBound;
  174.             }

  175.             if (!org.drip.numerical.common.NumberUtil.IsValid (dblResponseLowerBound))
  176.                 dblResponseLowerBound = dblResponseLeftBound;
  177.             else {
  178.                 if (dblResponseLowerBound > dblResponseLeftBound)
  179.                     dblResponseLowerBound = dblResponseLeftBound;
  180.             }

  181.             if (!org.drip.numerical.common.NumberUtil.IsValid (dblResponseUpperBound))
  182.                 dblResponseUpperBound = dblResponseRightBound;
  183.             else {
  184.                 if (dblResponseUpperBound < dblResponseRightBound)
  185.                     dblResponseUpperBound = dblResponseRightBound;
  186.             }
  187.         }

  188.         double dblVariation = dblResponseUpperBound - dblResponseLowerBound;

  189.         try {
  190.             return new org.drip.spaces.cover.L1R1CoveringBounds (dblPredictorUpperBound -
  191.                 dblPredictorLowerBound, dblVariation, dblVariation);
  192.         } catch (java.lang.Exception e) {
  193.             e.printStackTrace();
  194.         }

  195.         return null;
  196.     }
  197. }