UD.java

  1. package org.drip.numerical.linearalgebra;

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

  74. /**
  75.  * <i>UD</i> holds the U and the D Matrices that form the Result of the UDU Transpose Decomposition.
  76.  *
  77.  * <br><br>
  78.  *  <ul>
  79.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/NumericalCore.md">Numerical Core Module</a></li>
  80.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/NumericalOptimizerLibrary.md">Numerical Optimizer Library</a></li>
  81.  *      <li><b>Project</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/numerical">Numerical Analysis</a></li>
  82.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/numerical/linearalgebra">Linear Algebra Matrix Transform Library</a></li>
  83.  *  </ul>
  84.  * <br><br>
  85.  *
  86.  * @author Lakshmi Krishnamurthy
  87.  */

  88. public class UD
  89. {
  90.     private double[][] _D = null;
  91.     private double[][] _U = null;

  92.     /**
  93.      * UD Constructor
  94.      *
  95.      * @param u U
  96.      * @param d D
  97.      *
  98.      * @throws java.lang.Exception Thrown if the Inputs are Invalid
  99.      */

  100.     public UD (
  101.         final double[][] u,
  102.         final double[][] d)
  103.         throws java.lang.Exception
  104.     {
  105.         if (null == (_U = u) ||
  106.             null == (_D = d)
  107.         )
  108.         {
  109.             throw new java.lang.Exception (
  110.                 "UD ctr: Invalid Inputs!"
  111.             );
  112.         }

  113.         int size = _U.length;

  114.         if (0 == size || null == _U[0] || size != _U[0].length ||
  115.             size != _D.length || null == _D[0] || size != _D[0].length ||
  116.             !org.drip.numerical.linearalgebra.Matrix.IsDiagonal (
  117.                 _D
  118.             )
  119.         )
  120.         {
  121.             throw new java.lang.Exception (
  122.                 "UD ctr: Invalid Inputs!"
  123.             );
  124.         }
  125.     }

  126.     /**
  127.      * Retrieve U
  128.      *
  129.      * @return U
  130.      */

  131.     public double[][] u()
  132.     {
  133.         return _U;
  134.     }

  135.     /**
  136.      * Retrieve D
  137.      *
  138.      * @return D
  139.      */

  140.     public double[][] d()
  141.     {
  142.         return _D;
  143.     }

  144.     /**
  145.      * Compute the UDU Transpose
  146.      *
  147.      * @return The UDU Transpose
  148.      */

  149.     public double[][] uduTranspose()
  150.     {
  151.         double[][] ud = org.drip.numerical.linearalgebra.Matrix.Product (
  152.             _U,
  153.             _D
  154.         );

  155.         return null == ud ? null : org.drip.numerical.linearalgebra.Matrix.Product (
  156.             ud,
  157.             org.drip.numerical.linearalgebra.Matrix.Transpose (
  158.                 _U
  159.             )
  160.         );
  161.     }
  162. }