UnitVector.java

  1. package org.drip.function.definition;

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

  77. /**
  78.  * <i>UnitVector</i> implements the Normalized R<sup>d</sup> Unit Vector.
  79.  *
  80.  *  <br><br>
  81.  *  <ul>
  82.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/ComputationalCore.md">Computational Core Module</a></li>
  83.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/NumericalAnalysisLibrary.md">Numerical Analysis Library</a></li>
  84.  *      <li><b>Project</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/function/README.md">R<sup>d</sup> To R<sup>d</sup> Function Analysis</a></li>
  85.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/function/definition/README.md">Function Implementation Ancillary Support Objects</a></li>
  86.  *  </ul>
  87.  *
  88.  * @author Lakshmi Krishnamurthy
  89.  */

  90. public class UnitVector {
  91.     private double[] _adblComponent;

  92.     /**
  93.      * Construct an Instance of the Unit Vector from the Input Vector
  94.      *
  95.      * @param adbl The Input Double Vector
  96.      *
  97.      * @return The Unit Vector Instance
  98.      */

  99.     public static final UnitVector Standard (
  100.         final double[] adbl)
  101.     {
  102.         if (null == adbl) return null;

  103.         int iDimension = adbl.length;
  104.         double dblGradientModulus = 0.;
  105.         double[] adblComponent = new double[iDimension];

  106.         if (0 == iDimension) return null;

  107.         for (int i = 0; i < iDimension; ++i) {
  108.             if (!org.drip.numerical.common.NumberUtil.IsValid (adbl[i])) return null;

  109.             dblGradientModulus += adbl[i] * adbl[i];
  110.         }

  111.         if (0. == dblGradientModulus) return null;

  112.         dblGradientModulus = java.lang.Math.sqrt (dblGradientModulus);

  113.         for (int i = 0; i < iDimension; ++i)
  114.             adblComponent[i] = adbl[i] / dblGradientModulus;

  115.         return new UnitVector (adblComponent);
  116.     }

  117.     protected UnitVector (
  118.         final double[] adblComponent)
  119.     {
  120.         _adblComponent = adblComponent;
  121.     }

  122.     /**
  123.      * Retrieve the Unit Vector's Component Array
  124.      *
  125.      * @return The Unit Vector's Component Array
  126.      */

  127.     public double[] component()
  128.     {
  129.         return _adblComponent;
  130.     }

  131.     /**
  132.      * Compute the Directional Increment along the Vector
  133.      *
  134.      * @param adblVariate The Starting R^d Variate
  135.      * @param dblStepLength The Step Length
  136.      *
  137.      * @return The Directionally Incremented Vector
  138.      */

  139.     public double[] directionalIncrement (
  140.         final double[] adblVariate,
  141.         final double dblStepLength)
  142.     {
  143.         if (null == adblVariate || !org.drip.numerical.common.NumberUtil.IsValid (dblStepLength)) return null;

  144.         int iVariateDimension = adblVariate.length;
  145.         double[] adblIncrementedVariate = new double[iVariateDimension];

  146.         if (iVariateDimension != _adblComponent.length) return null;

  147.         for (int i = 0; i < iVariateDimension; ++i) {
  148.             if (!org.drip.numerical.common.NumberUtil.IsValid (adblVariate[i])) return null;

  149.             adblIncrementedVariate[i] = adblVariate[i] + dblStepLength * _adblComponent[i];
  150.         }

  151.         return adblIncrementedVariate;
  152.     }
  153. }