KnotInsertionPolynomialEstimator.java

  1. package org.drip.sample.stretch;

  2. import org.drip.function.r1tor1.*;
  3. import org.drip.numerical.common.FormatUtil;
  4. import org.drip.spline.basis.*;
  5. import org.drip.spline.params.*;
  6. import org.drip.spline.pchip.*;
  7. import org.drip.spline.stretch.*;

  8. /*
  9.  * -*- mode: java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  10.  */

  11. /*!
  12.  * Copyright (C) 2018 Lakshmi Krishnamurthy
  13.  * Copyright (C) 2017 Lakshmi Krishnamurthy
  14.  * Copyright (C) 2016 Lakshmi Krishnamurthy
  15.  * Copyright (C) 2015 Lakshmi Krishnamurthy
  16.  * Copyright (C) 2014 Lakshmi Krishnamurthy
  17.  * Copyright (C) 2013 Lakshmi Krishnamurthy
  18.  *
  19.  *  This file is part of DRIP, a free-software/open-source library for buy/side financial/trading model
  20.  *      libraries targeting analysts and developers
  21.  *      https://lakshmidrip.github.io/DRIP/
  22.  *  
  23.  *  DRIP is composed of four main libraries:
  24.  *  
  25.  *  - DRIP Fixed Income - https://lakshmidrip.github.io/DRIP-Fixed-Income/
  26.  *  - DRIP Asset Allocation - https://lakshmidrip.github.io/DRIP-Asset-Allocation/
  27.  *  - DRIP Numerical Optimizer - https://lakshmidrip.github.io/DRIP-Numerical-Optimizer/
  28.  *  - DRIP Statistical Learning - https://lakshmidrip.github.io/DRIP-Statistical-Learning/
  29.  *
  30.  *  - DRIP Fixed Income: Library for Instrument/Trading Conventions, Treasury Futures/Options,
  31.  *      Funding/Forward/Overnight Curves, Multi-Curve Construction/Valuation, Collateral Valuation and XVA
  32.  *      Metric Generation, Calibration and Hedge Attributions, Statistical Curve Construction, Bond RV
  33.  *      Metrics, Stochastic Evolution and Option Pricing, Interest Rate Dynamics and Option Pricing, LMM
  34.  *      Extensions/Calibrations/Greeks, Algorithmic Differentiation, and Asset Backed Models and Analytics.
  35.  *
  36.  *  - DRIP Asset Allocation: Library for model libraries for MPT framework, Black Litterman Strategy
  37.  *      Incorporator, Holdings Constraint, and Transaction Costs.
  38.  *
  39.  *  - DRIP Numerical Optimizer: Library for Numerical Optimization and Spline Functionality.
  40.  *
  41.  *  - DRIP Statistical Learning: Library for Statistical Evaluation and Machine Learning.
  42.  *
  43.  *  Licensed under the Apache License, Version 2.0 (the "License");
  44.  *      you may not use this file except in compliance with the License.
  45.  *  
  46.  *  You may obtain a copy of the License at
  47.  *      http://www.apache.org/licenses/LICENSE-2.0
  48.  *  
  49.  *  Unless required by applicable law or agreed to in writing, software
  50.  *      distributed under the License is distributed on an "AS IS" BASIS,
  51.  *      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  52.  *  
  53.  *  See the License for the specific language governing permissions and
  54.  *      limitations under the License.
  55.  */

  56. /**
  57.  * KnotInsertionPolynomialEstimator demonstrates the Stretch builder and usage API. It shows the following:
  58.  *
  59.  *  - Construction of segment control parameters - polynomial (regular/Bernstein) segment control,
  60.  *      exponential/hyperbolic tension segment control, Kaklis-Pandelis tension segment control.
  61.  *  - Perform the following sequence of tests for a given segment control for a predictor/response range
  62.  *      - Assign the array of Segment Builder Parameters - one per segment
  63.  *      - Construct the Stretch Instance
  64.  *      - Estimate, compute the segment-by-segment monotonicity and the Stretch Jacobian
  65.  *      - Construct a new Stretch instance by inserting a pair of of predictor/response knots
  66.  *      - Estimate, compute the segment-by-segment monotonicity and the Stretch Jacobian
  67.  *  - Demonstrate the construction, the calibration, and the usage of Local Control Segment Spline.
  68.  *  - Demonstrate the construction, the calibration, and the usage of Lagrange Polynomial Stretch.
  69.  *  - Demonstrate the construction, the calibration, and the usage of C1 Stretch with the desired customization.
  70.  *
  71.  * @author Lakshmi Krishnamurthy
  72.  */

  73. public class KnotInsertionPolynomialEstimator {

  74.     /*
  75.      * Build Polynomial Segment Control Parameters.
  76.      *
  77.      *  WARNING: Insufficient Error Checking, so use caution
  78.      */

  79.     private static final SegmentCustomBuilderControl PolynomialSegmentControlParams (
  80.         final int iNumBasis,
  81.         final SegmentInelasticDesignControl sdic,
  82.         final ResponseScalingShapeControl rssc)
  83.         throws Exception
  84.     {
  85.         return new SegmentCustomBuilderControl (
  86.             MultiSegmentSequenceBuilder.BASIS_SPLINE_POLYNOMIAL,
  87.             new PolynomialFunctionSetParams (iNumBasis),
  88.             sdic,
  89.             rssc,
  90.             null
  91.         );
  92.     }

  93.     /*
  94.      * Build Bernstein Polynomial Segment Control Parameters.
  95.      *
  96.      *  WARNING: Insufficient Error Checking, so use caution
  97.      */

  98.     private static final SegmentCustomBuilderControl BernsteinPolynomialSegmentControlParams (
  99.         final int iNumBasis,
  100.         final SegmentInelasticDesignControl sdic,
  101.         final ResponseScalingShapeControl rssc)
  102.         throws Exception
  103.     {
  104.         return new SegmentCustomBuilderControl (
  105.             MultiSegmentSequenceBuilder.BASIS_SPLINE_BERNSTEIN_POLYNOMIAL,
  106.             new PolynomialFunctionSetParams (iNumBasis),
  107.             sdic,
  108.             rssc,
  109.             null
  110.         );
  111.     }

  112.     /*
  113.      * Build Exponential Tension Segment Control Parameters.
  114.      *
  115.      *  WARNING: Insufficient Error Checking, so use caution
  116.      */

  117.     public static final SegmentCustomBuilderControl ExponentialTensionSegmentControlParams (
  118.         final double dblTension,
  119.         final SegmentInelasticDesignControl sdic,
  120.         final ResponseScalingShapeControl rssc)
  121.         throws Exception
  122.     {
  123.         return new SegmentCustomBuilderControl (
  124.             MultiSegmentSequenceBuilder.BASIS_SPLINE_EXPONENTIAL_TENSION,
  125.             new ExponentialTensionSetParams (dblTension),
  126.             sdic,
  127.             rssc,
  128.             null
  129.         );
  130.     }

  131.     /*
  132.      * Build Hyperbolic Tension Segment Control Parameters.
  133.      *
  134.      *  WARNING: Insufficient Error Checking, so use caution
  135.      */

  136.     private static final SegmentCustomBuilderControl HyperbolicTensionSegmentControlParams (
  137.         final double dblTension,
  138.         final SegmentInelasticDesignControl sdic,
  139.         final ResponseScalingShapeControl rssc)
  140.         throws Exception
  141.     {
  142.         return new SegmentCustomBuilderControl (
  143.             MultiSegmentSequenceBuilder.BASIS_SPLINE_HYPERBOLIC_TENSION,
  144.             new ExponentialTensionSetParams (dblTension),
  145.             sdic,
  146.             rssc,
  147.             null
  148.         );
  149.     }

  150.     /*
  151.      * Build Kaklis-Pandelis Segment Control Parameters
  152.      *
  153.      *  WARNING: Insufficient Error Checking, so use caution
  154.      */

  155.     private static final SegmentCustomBuilderControl KaklisPandelisSegmentControlParams (
  156.         final int iKPTensionDegree,
  157.         final SegmentInelasticDesignControl sdic,
  158.         final ResponseScalingShapeControl rssc)
  159.         throws Exception
  160.     {
  161.         return new SegmentCustomBuilderControl (
  162.             MultiSegmentSequenceBuilder.BASIS_SPLINE_KAKLIS_PANDELIS,
  163.             new KaklisPandelisSetParams (iKPTensionDegree),
  164.             sdic,
  165.             rssc,
  166.             null
  167.         );
  168.     }

  169.     /*
  170.      * Perform the following sequence of tests for a given segment control for a predictor/response range
  171.      *  - Estimate
  172.      *  - Compute the segment-by-segment monotonicity
  173.      *  - Stretch Jacobian
  174.      *  - Stretch knot insertion
  175.      *
  176.      *  WARNING: Insufficient Error Checking, so use caution
  177.      */

  178.     private static final void BasisSplineStretchTest (
  179.         final double[] adblX,
  180.         final double[] adblY,
  181.         final SegmentCustomBuilderControl scbc)
  182.         throws Exception
  183.     {
  184.         double dblX = 1.;
  185.         double dblXMax = 10.;

  186.         /*
  187.          * Assign the array of Segment Builder Parameters - one per segment
  188.          */

  189.         SegmentCustomBuilderControl[] aSCBC = new SegmentCustomBuilderControl[adblX.length - 1];

  190.         for (int i = 0; i < adblX.length - 1; ++i)
  191.             aSCBC[i] = scbc;

  192.         /*
  193.          * Construct a Stretch instance
  194.          */

  195.         MultiSegmentSequence mss = MultiSegmentSequenceBuilder.CreateCalibratedStretchEstimator (
  196.             "SPLINE_STRETCH", // Name
  197.             adblX, // predictors
  198.             adblY, // responses
  199.             aSCBC, // Basis Segment Builder parameters
  200.             null,  // NULL segment Best Fit Response
  201.             BoundarySettings.NaturalStandard(), // Boundary Condition - Natural
  202.             MultiSegmentSequence.CALIBRATE // Calibrate the Stretch predictors to the responses
  203.         );

  204.         /*
  205.          * Estimate, compute the segment-by-segment monotonicity and the Stretch Jacobian
  206.          */

  207.         while (dblX <= dblXMax) {
  208.             System.out.println ("Y[" + dblX + "] " + FormatUtil.FormatDouble (mss.responseValue (dblX), 1, 2, 1.) + " | " +
  209.                 mss.monotoneType (dblX));

  210.             System.out.println ("Jacobian Y[" + dblX + "]=" + mss.jackDResponseDCalibrationInput (dblX, 1).displayString());

  211.             dblX += 1.;
  212.         }

  213.         System.out.println ("SPLINE_STRETCH DPE: " + mss.curvatureDPE());

  214.         /*
  215.          * Construct a new Stretch instance by inserting a pair of of predictor/response knots
  216.          */

  217.         MultiSegmentSequence mssInsert = MultiSegmentSequenceModifier.InsertKnot (
  218.             mss,                                // The Original MSS
  219.             9.,                                 // Predictor Ordinate at which the Insertion is to be made
  220.             10.,                                // Response Value to be inserted
  221.             BoundarySettings.NaturalStandard(), // Boundary Condition - Natural
  222.             MultiSegmentSequence.CALIBRATE  // Calibrate the Stretch predictors to the responses
  223.         );

  224.         dblX = 1.;

  225.         /*
  226.          * Estimate, compute the sgement-by-segment monotonicty and the Stretch Jacobian
  227.          */

  228.         while (dblX <= dblXMax) {
  229.             System.out.println ("Inserted Y[" + dblX + "] " + FormatUtil.FormatDouble (mssInsert.responseValue (dblX), 1, 2, 1.)
  230.                 + " | " + mssInsert.monotoneType (dblX));

  231.             dblX += 1.;
  232.         }

  233.         System.out.println ("SPLINE_STRETCH_INSERT DPE: " + mssInsert.curvatureDPE());
  234.     }

  235.     /*
  236.      * This function demonstrates the construction, the calibration, and the usage of Local Control Segment Spline.
  237.      *  It does the following:
  238.      *  - Set up the predictor/response values, the shape controller, and the basis spline (in this case polynomial)
  239.      *  - Create the left and the right segment edge derivative parameters for each segment
  240.      *  - Construct the C1 Hermite Polynomial Spline based Stretch Estimator by using the following steps:
  241.      *      - Set up the Stretch Builder Parameter
  242.      *      - Set the array of Segment Builder Parameters - one per segment
  243.      *      - Construct the Stretch
  244.      *      - Set up the left and the local control Parameters - in this case the derivatives
  245.      *      - Calibrate the Stretch and compute the Jacobian
  246.      *      - Display the Estimated Y and the Stretch Jacobian across the variates
  247.      *  - Insert the Local Control spline point(s) for the following variants:
  248.      *      - Local Control Explicit Hermite Point
  249.      *      - Local Control Explicit Cardinal Point
  250.      *      - Local Control Explicit Catmull-Rom Point
  251.      *  - In each of the above instances perform the following tests:
  252.      *      - Set up the left and the right segment edge parameters
  253.      *      - Insert the pair of edge parameters at the chosen variate node.
  254.      *      - Compute the Estimated segment value and the motonicity across a suitable variate range.
  255.      *
  256.      *  WARNING: Insufficient Error Checking, so use caution
  257.      */

  258.     private static final void TestHermiteCatmullRomCardinal()
  259.         throws java.lang.Exception
  260.     {
  261.         /*
  262.          * X predictors
  263.          */

  264.         double[] adblX = new double[] {0.00, 1.00,  2.00,  3.00,  4.00};

  265.         /*
  266.          * Y responses
  267.          */

  268.         double[] adblY = new double[] {1.00, 4.00, 15.00, 40.00, 85.00};

  269.         /*
  270.          * DY/DX explicit local shape control for the responses
  271.          */

  272.         double[] adblDYDX = new double[] {1.00, 6.00, 17.00, 34.00, 57.00};

  273.         /*
  274.          * Construct a rational shape controller with the shape controller tension of 1.
  275.          */

  276.         double dblShapeControllerTension = 1.;

  277.         ResponseScalingShapeControl rssc = new ResponseScalingShapeControl (
  278.             true,
  279.             new QuadraticRationalShapeControl (dblShapeControllerTension)
  280.         );

  281.         /*
  282.          * Construct the segment inelastic parameter that is C2 (iK = 2 sets it to C2), with 2nd order
  283.          *  roughness penalty derivative, and without constraint
  284.          */

  285.         int iK = 1;
  286.         int iRoughnessPenaltyDerivativeOrder = 2;

  287.         SegmentInelasticDesignControl sdic = SegmentInelasticDesignControl.Create (
  288.             iK,
  289.             iRoughnessPenaltyDerivativeOrder
  290.         );

  291.         /*
  292.          * Construct the C1 Hermite Polynomial Spline based Stretch Estimator by using the following steps:
  293.          *
  294.          * - 1) Set up the Stretch Builder Parameter
  295.          */

  296.         int iNumBasis = 4;

  297.         SegmentCustomBuilderControl scbc = new SegmentCustomBuilderControl (
  298.             MultiSegmentSequenceBuilder.BASIS_SPLINE_POLYNOMIAL,
  299.             new PolynomialFunctionSetParams (iNumBasis),
  300.             sdic,
  301.             rssc,
  302.             null
  303.         );

  304.         /*
  305.          *  - 2a) Set the array of Segment Builder Parameters - one per segment
  306.          */

  307.         SegmentCustomBuilderControl[] aSCBC = new SegmentCustomBuilderControl[adblX.length - 1];

  308.         for (int i = 0; i < adblX.length - 1; ++i)
  309.             aSCBC[i] = scbc;

  310.         /*
  311.          * - 2b) Construct the Stretch
  312.          */

  313.         MultiSegmentSequence mss = MultiSegmentSequenceBuilder.CreateUncalibratedStretchEstimator (
  314.             "SPLINE_STRETCH",
  315.             adblX,
  316.             aSCBC
  317.         );

  318.         SegmentPredictorResponseDerivative[] aSPRDLeft = new SegmentPredictorResponseDerivative[adblY.length - 1];
  319.         SegmentPredictorResponseDerivative[] aSPRDRight = new SegmentPredictorResponseDerivative[adblY.length - 1];

  320.          /*
  321.           * - 3) Set up the left and the local control Parameters - in this case the derivatives
  322.           */

  323.         for (int i = 0; i < adblY.length - 1; ++i) {
  324.             aSPRDLeft[i] = new SegmentPredictorResponseDerivative (adblY[i], new double[] {adblDYDX[i]});

  325.             aSPRDRight[i] = new SegmentPredictorResponseDerivative (adblY[i + 1], new double[] {adblDYDX[i + 1]});
  326.         }

  327.         /*
  328.          * - 4) Calibrate the Stretch and compute the Jacobian
  329.          */

  330.         System.out.println ("Stretch Setup Succeeded: " +
  331.             mss.setupHermite (
  332.                 aSPRDLeft,
  333.                 aSPRDRight,
  334.                 null,
  335.                 null,
  336.                 MultiSegmentSequence.CALIBRATE
  337.             )
  338.         );

  339.         double dblX = 0.;
  340.         double dblXMax = 4.;

  341.         /*
  342.          * - 5) Display the Estimated Y and the Stretch Jacobian across the variates
  343.          */

  344.         while (dblX <= dblXMax) {
  345.             System.out.println ("Y[" + dblX + "] " + FormatUtil.FormatDouble (mss.responseValue (dblX), 1, 2, 1.) + " | " +
  346.                 mss.monotoneType (dblX));

  347.             System.out.println ("Jacobian Y[" + dblX + "]=" + mss.jackDResponseDCalibrationInput (dblX, 1).displayString());

  348.             dblX += 0.5;
  349.         }

  350.         System.out.println ("SPLINE_STRETCH DPE: " + mss.curvatureDPE());

  351.         /*
  352.          * We now insert a Hermite local control knot. The following are the steps:
  353.          *
  354.          * - 1) Set up the left and the right segment edge parameters
  355.          * - 2) Insert the pair of edge parameters at the chosen variate node.
  356.          * - 3) Compute the Estimated segment value and the motonicity across a suitable variate range.
  357.          */

  358.         SegmentPredictorResponseDerivative sprdLeftSegmentRightNode = new SegmentPredictorResponseDerivative (
  359.             27.5,
  360.             new double[] {25.5}
  361.         );

  362.         SegmentPredictorResponseDerivative sprdRightSegmentLeftNode = new SegmentPredictorResponseDerivative (
  363.             27.5,
  364.             new double[] {25.5}
  365.         );

  366.         MultiSegmentSequence mssInsert = MultiSegmentSequenceModifier.InsertKnot (
  367.             mss,
  368.             2.5,
  369.             sprdLeftSegmentRightNode,
  370.             sprdRightSegmentLeftNode
  371.         );

  372.         dblX = 1.;

  373.         while (dblX <= dblXMax) {
  374.             System.out.println ("Inserted Y[" + dblX + "] " + FormatUtil.FormatDouble (mssInsert.responseValue (dblX), 1, 2, 1.)
  375.                 + " | " + mssInsert.monotoneType (dblX));

  376.             dblX += 0.5;
  377.         }

  378.         System.out.println ("SPLINE_STRETCH_INSERT DPE: " + mssInsert.curvatureDPE());

  379.         /*
  380.          * We now insert a Cardinal local control knot. The following are the steps:
  381.          *
  382.          * - 1) Set up the left and the right segment edge parameters
  383.          * - 2) Insert the pair of edge parameters at the chosen variate node.
  384.          * - 3) Compute the Estimated segment value and the motonicity across a suitable variate range.
  385.          */

  386.         MultiSegmentSequence mssCardinalInsert = MultiSegmentSequenceModifier.InsertCardinalKnot (
  387.             mss,
  388.             2.5,
  389.             0.
  390.         );

  391.         dblX = 1.;

  392.         while (dblX <= dblXMax) {
  393.             System.out.println ("Cardinal Inserted Y[" + dblX + "] " + FormatUtil.FormatDouble
  394.                 (mssCardinalInsert.responseValue (dblX), 1, 2, 1.) + " | " + mssInsert.monotoneType (dblX));

  395.             dblX += 0.5;
  396.         }

  397.         System.out.println ("SPLINE_STRETCH_CARDINAL_INSERT DPE: " + mssCardinalInsert.curvatureDPE());

  398.         /*
  399.          * We now insert a Catmull-Rom local control knot. The following are the steps:
  400.          *
  401.          * - 1) Set up the left and the right segment edge parameters
  402.          * - 2) Insert the pair of edge parameters at the chosen variate node.
  403.          * - 3) Compute the Estimated segment value and the motonicity across a suitable variate range.
  404.          */

  405.         MultiSegmentSequence mssCatmullRomInsert = MultiSegmentSequenceModifier.InsertCatmullRomKnot (
  406.             mss,
  407.             2.5
  408.         );

  409.         dblX = 1.;

  410.         while (dblX <= dblXMax) {
  411.             System.out.println ("Catmull-Rom Inserted Y[" + dblX + "] " + FormatUtil.FormatDouble
  412.                 (mssCatmullRomInsert.responseValue (dblX), 1, 2, 1.) + " | " + mssInsert.monotoneType (dblX));

  413.             dblX += 0.5;
  414.         }

  415.         System.out.println ("SPLINE_STRETCH_CATMULL_ROM_INSERT DPE: " + mssCatmullRomInsert.curvatureDPE());
  416.     }

  417.     /*
  418.      * This function demonstrates the construction, the calibration, and the usage of Lagrange Polynomial Stretch.
  419.      *  It does the following:
  420.      *  - Set up the predictors and the Lagrange Polynomial Stretch.
  421.      *  - Calibrate to a target Y array.
  422.      *  - Calibrate the value to a target X.
  423.      *  - Calibrate the value Jacobian to a target X.
  424.      *  - Verify the local monotonicity and convexity (both the co- and the local versions).
  425.      *
  426.      *  WARNING: Insufficient Error Checking, so use caution
  427.      */

  428.     private static final void TestLagrangePolynomialStretch()
  429.         throws java.lang.Exception
  430.     {
  431.         SingleSegmentSequence sslp = new SingleSegmentLagrangePolynomial (new double[] {-2., -1., 2., 5.});

  432.         System.out.println ("Setup: " + sslp.setup (
  433.             0.25,                                       // Left Edge Response Value
  434.             new double[] {0.25, 0.25, 12.25, 42.25},    // Array of Segment Response Values
  435.             null,                                       // Fitness Weighted Response
  436.             BoundarySettings.NaturalStandard(),         // Boundary Condition - Natural
  437.             MultiSegmentSequence.CALIBRATE)             // Calibrate the Stretch predictors to the responses
  438.         );

  439.         System.out.println ("Value = " + sslp.responseValue (2.16));

  440.         System.out.println ("Value Jacobian = " + sslp.jackDResponseDCalibrationInput (2.16, 1).displayString());

  441.         System.out.println ("Value Monotone Type: " + sslp.monotoneType (2.16));

  442.         System.out.println ("Is Locally Monotone: " + sslp.isLocallyMonotone());
  443.     }

  444.     /*
  445.      * Construct the C1 Stretch with the desired customization - this demonstrates the following steps:
  446.      *  - Construct the Local Monotone C1 Generator with the desired Customization.
  447.      *  - Array of Segment Builder Parameters - one per segment.
  448.      *  - Construct the Local Control Stretch instance.
  449.      *
  450.      *  WARNING: Insufficient Error Checking, so use caution
  451.      */

  452.     private static final MultiSegmentSequence ConstructSpecifiedC1Stretch (
  453.         final double[] adblX,
  454.         final double[] adblY,
  455.         final java.lang.String strGeneratorType,
  456.         final SegmentCustomBuilderControl scbc,
  457.         final boolean bEliminateSpuriousExtrema,
  458.         final boolean bApplyMonotoneFilter)
  459.     {
  460.         /*
  461.          * Construct the Local Monotone C1 Generator with the desired Customization
  462.          */

  463.         LocalMonotoneCkGenerator lmcg = LocalMonotoneCkGenerator.Create (
  464.             adblX,                      // The Array of Predictor Ordinates
  465.             adblY,                      // The Array of Response Value
  466.             strGeneratorType,           // The C1 Generator Type
  467.             bEliminateSpuriousExtrema,  // TRUE => Eliminate Spurious Extremum
  468.             bApplyMonotoneFilter        // TRUE => Apply Monotone Filter
  469.         );

  470.         /*
  471.          * Array of Segment Builder Parameters - one per segment
  472.          */

  473.         SegmentCustomBuilderControl[] aSCBC = new SegmentCustomBuilderControl[adblX.length - 1];

  474.         for (int i = 0; i < adblX.length - 1; ++i)
  475.             aSCBC[i] = scbc;

  476.         /*
  477.          * Construct the Local Control Stretch instance
  478.          */

  479.         return LocalControlStretchBuilder.CustomSlopeHermiteSpline (
  480.             strGeneratorType + "_LOCAL_STRETCH",
  481.             adblX,
  482.             adblY,
  483.             lmcg.C1(),
  484.             aSCBC,
  485.             null,
  486.             MultiSegmentSequence.CALIBRATE
  487.         );
  488.     }

  489.     /*
  490.      * Perform the following sequence of tests for a given segment control for a predictor/response range:
  491.      *  - Estimate, compute the segment-by-segment monotonicity and the Stretch Jacobian.
  492.      *  - Construct a new Stretch instance by inserting a pair of of predictor/response knots.
  493.      *  - Estimate, compute the segment-by-segment monotonicity and the Stretch Jacobian.
  494.      *  - Stretch knot insertion
  495.      *
  496.      *  WARNING: Insufficient Error Checking, so use caution
  497.      */

  498.     private static final void C1GeneratedStretchTest (
  499.         final double[] adblX,
  500.         final double[] adblY,
  501.         final MultiSegmentSequence mss)
  502.         throws Exception
  503.     {
  504.         double dblX = 1.;
  505.         double dblXMax = 10.;

  506.         /*
  507.          * Estimate, compute the segment-by-segment monotonicity and the Stretch Jacobian
  508.          */

  509.         while (dblX <= dblXMax) {
  510.             System.out.println (
  511.                 "Y[" + dblX + "] => " + FormatUtil.FormatDouble (mss.responseValue (dblX), 1, 2, 1.) + " | " +
  512.                 mss.monotoneType (dblX));

  513.             System.out.println ("Jacobian Y[" + dblX + "]=" + mss.jackDResponseDCalibrationInput (dblX, 1).displayString());

  514.             dblX += 1.;
  515.         }

  516.         System.out.println ("\tSPLINE_STRETCH DPE: " + mss.curvatureDPE());

  517.         /*
  518.          * Construct a new Stretch instance by inserting a pair of of predictor/response knots
  519.          */

  520.         MultiSegmentSequence mssInsert = MultiSegmentSequenceModifier.InsertKnot (
  521.             mss,                                // The Original MSS
  522.             9.,                                 // Predictor Ordinate at which the Insertion is to be made
  523.             10.,                                // Response Value to be inserted
  524.             BoundarySettings.NaturalStandard(), // Boundary Condition - Natural
  525.             MultiSegmentSequence.CALIBRATE  // Calibrate the Stretch predictors to the responses
  526.         );

  527.         dblX = 1.;

  528.         /*
  529.          * Estimate, compute the segment-by-segment monotonicity and the Stretch Jacobian
  530.          */

  531.         while (dblX <= dblXMax) {
  532.             System.out.println ("Inserted Y[" + dblX + "] " + FormatUtil.FormatDouble (mssInsert.responseValue (dblX), 1, 2, 1.)
  533.                 + " | " + mssInsert.monotoneType (dblX));

  534.             dblX += 1.;
  535.         }

  536.         System.out.println ("\tSPLINE_STRETCH_INSERT DPE: " + mssInsert.curvatureDPE());
  537.     }

  538.     /*
  539.      * This function brings it all together. It demonstrates the following sequence:
  540.      *  - Setup and X predictor ordinate and Y response value arrays.
  541.      *  - Construct a rational shape controller with the specified shape controller tension parameter.
  542.      *  - Construct the segment inelastic parameter that is C2 (iK = 2 sets it to C2), with 2nd order
  543.      *      roughness penalty derivative, and without constraint
  544.      *  - Regular Polynomial Basis Spline Stretch Test.
  545.      *  - Bernstein Polynomial Basis Spline Stretch Test.
  546.      *  - Exponential Tension Basis Spline Stretch Test.
  547.      *  - Hyperbolic Tension Basis Spline Stretch Test.
  548.      *  - Kaklis-Pandelis Basis Spline Stretch Test.
  549.      *  - Catmull-Rom Cardinal Hermite Basis Spline Stretch Test.
  550.      *  - Lagrange Polynomial Basis Spline Stretch Test.
  551.      *  - Akima C1 Basis Spline Stretch Test.
  552.      *  - Bessel/Hermite C1 Basis Spline Stretch Test.
  553.      *  - Harmonic Monotone C1 Basis Spline Stretch Test with Filter.
  554.      *  - Harmonic Monotone C1 Basis Spline Stretch Test without Filter.
  555.      *  - Huynh-Le Floch Limiter Monotone C1 Basis Spline Stretch Test without Filter.
  556.      *  - Hyman 1983 Monotone C1 Basis Spline Stretch Test with Filter.
  557.      *  - Hyman 1989 Monotone C1 Basis Spline Stretch Test with Filter.
  558.      *  - Kruger C1 Basis Spline Stretch Test with Filter.
  559.      *  - Van Leer Limiter Monotone C1 Basis Spline Stretch Test without Filter.
  560.      */

  561.     public static final void StretchEstimationTestSequence()
  562.         throws Exception
  563.     {
  564.         /*
  565.          * X predictors
  566.          */

  567.         double[] adblX = new double[] { 1.00,  1.50,  2.00, 3.00, 4.00, 5.00, 6.50, 8.00, 10.00};

  568.         /*
  569.          * Y responses
  570.          */

  571.         double[] adblY = new double[] {25.00, 20.25, 16.00, 9.00, 4.00, 1.00, 0.25, 4.00, 16.00};

  572.         /*
  573.          * Construct a rational shape controller with the shape controller tension of 1.
  574.          */

  575.         double dblShapeControllerTension = 1.;

  576.         ResponseScalingShapeControl rssc = new ResponseScalingShapeControl (
  577.             true,
  578.             new QuadraticRationalShapeControl (dblShapeControllerTension)
  579.         );

  580.         /*
  581.          * Construct the segment inelastic parameter that is C2 (iK = 2 sets it to C2), with 2nd order
  582.          *  roughness penalty derivative, and without constraint
  583.          */

  584.         int iK = 2;
  585.         int iRoughnessPenaltyDerivativeOrder = 2;

  586.         SegmentInelasticDesignControl sdic = SegmentInelasticDesignControl.Create (
  587.             iK,
  588.             iRoughnessPenaltyDerivativeOrder
  589.         );

  590.         /*
  591.          * Bernstein Polynomial Basis Spline Stretch Test
  592.          */

  593.         System.out.println (" \n---------- \n BERNSTEIN POLYNOMIAL \n ---------- \n");

  594.         int iBernPolyNumBasis = 4;

  595.         BasisSplineStretchTest (
  596.             adblX,
  597.             adblY,
  598.             BernsteinPolynomialSegmentControlParams (
  599.                 iBernPolyNumBasis,
  600.                 sdic,
  601.                 rssc
  602.             )
  603.         );

  604.         /*
  605.          * Regular Polynomial Basis Spline Stretch Test
  606.          */

  607.         System.out.println (" \n---------- \n POLYNOMIAL \n ---------- \n");

  608.         int iPolyNumBasis = 4;

  609.         BasisSplineStretchTest (
  610.             adblX,
  611.             adblY,
  612.             PolynomialSegmentControlParams (
  613.                 iPolyNumBasis,
  614.                 sdic,
  615.                 rssc
  616.             )
  617.         );

  618.         /*
  619.          * Exponential Tension Basis Spline Stretch Test
  620.          */

  621.         System.out.println (" \n---------- \n EXPONENTIAL TENSION \n ---------- \n");

  622.         double dblTension = 1.;

  623.         BasisSplineStretchTest (
  624.             adblX,
  625.             adblY,
  626.             ExponentialTensionSegmentControlParams (
  627.                 dblTension,
  628.                 sdic,
  629.                 rssc
  630.             )
  631.         );

  632.         /*
  633.          * Hyperbolic Tension Basis Spline Stretch Test
  634.          */

  635.         System.out.println (" \n---------- \n HYPERBOLIC TENSION \n ---------- \n");

  636.         BasisSplineStretchTest (
  637.             adblX,
  638.             adblY,
  639.             HyperbolicTensionSegmentControlParams (
  640.                 dblTension,
  641.                 sdic,
  642.                 rssc
  643.             )
  644.         );

  645.         /*
  646.          * Kaklis-Pandelis Basis Spline Stretch Test
  647.          */

  648.         System.out.println (" \n---------- \n KAKLIS PANDELIS \n ---------- \n");

  649.         int iKPTensionDegree = 2;

  650.         BasisSplineStretchTest (
  651.             adblX,
  652.             adblY,
  653.             KaklisPandelisSegmentControlParams (
  654.                 iKPTensionDegree,
  655.                 sdic,
  656.                 rssc
  657.             )
  658.         );

  659.         /*
  660.          * Catmull-Rom Cardinal Hermite Basis Spline Stretch Test
  661.          */

  662.         System.out.println (" \n---------- \n HERMITE - CATMULL ROM - CARDINAL \n ---------- \n");

  663.         TestHermiteCatmullRomCardinal();

  664.         /*
  665.          * Lagrange Polynomial Basis Spline Stretch Test
  666.          */

  667.         System.out.println (" \n---------- \n LAGRANGE POLYNOMIAL STRETCH\n ---------- \n");

  668.         TestLagrangePolynomialStretch();

  669.         /*
  670.          * Akima C1 Basis Spline Stretch Test
  671.          */

  672.         System.out.println (" \n---------- \n C1 AKIMA STRETCH\n ---------- \n");

  673.         C1GeneratedStretchTest (
  674.             adblX,
  675.             adblY,
  676.             ConstructSpecifiedC1Stretch (
  677.                 adblX,
  678.                 adblY,
  679.                 LocalMonotoneCkGenerator.C1_AKIMA,
  680.                 PolynomialSegmentControlParams (
  681.                     iPolyNumBasis,
  682.                     sdic,
  683.                     rssc
  684.                 ),
  685.                 true,
  686.                 true
  687.             )
  688.         );

  689.         /*
  690.          * Bessel/Hermite C1 Basis Spline Stretch Test
  691.          */

  692.         System.out.println (" \n---------- \n C1 BESSEL/HERMITE \n ---------- \n");

  693.         C1GeneratedStretchTest (
  694.             adblX,
  695.             adblY,
  696.             ConstructSpecifiedC1Stretch (
  697.                 adblX,
  698.                 adblY,
  699.                 LocalMonotoneCkGenerator.C1_BESSEL,
  700.                 PolynomialSegmentControlParams (
  701.                     iPolyNumBasis,
  702.                     sdic,
  703.                     rssc
  704.                 ),
  705.                 true,
  706.                 true
  707.             )
  708.         );

  709.         /*
  710.          * Harmonic Monotone C1 Basis Spline Stretch Test with Filter
  711.          */

  712.         System.out.println (" \n---------- \n C1 HARMONIC MONOTONE WITH FILTER \n ---------- \n");

  713.         C1GeneratedStretchTest (
  714.             adblX,
  715.             adblY,
  716.             ConstructSpecifiedC1Stretch (
  717.                 adblX,
  718.                 adblY,
  719.                 LocalMonotoneCkGenerator.C1_HARMONIC,
  720.                 PolynomialSegmentControlParams (
  721.                     iPolyNumBasis,
  722.                     sdic,
  723.                     rssc
  724.                 ),
  725.                 true,
  726.                 true
  727.             )
  728.         );

  729.         /*
  730.          * Harmonic Monotone C1 Basis Spline Stretch Test without Filter
  731.          */

  732.         System.out.println (" \n---------- \n C1 HARMONIC MONOTONE WITHOUT FILTER \n ---------- \n");

  733.         C1GeneratedStretchTest (
  734.             adblX,
  735.             adblY,
  736.             ConstructSpecifiedC1Stretch (
  737.                 adblX,
  738.                 adblY,
  739.                 LocalMonotoneCkGenerator.C1_HARMONIC,
  740.                 PolynomialSegmentControlParams (
  741.                     iPolyNumBasis,
  742.                     sdic,
  743.                     rssc
  744.                 ),
  745.                 true,
  746.                 false
  747.             )
  748.         );

  749.         /*
  750.          * Huynh-Le Floch Limiter Monotone C1 Basis Spline Stretch Test without Filter
  751.          */

  752.         System.out.println (" \n---------- \n C1 HUYNH LE-FLOCH LIMITER STRETCH WITHOUT FILTER \n ---------- \n");

  753.         C1GeneratedStretchTest (
  754.             adblX,
  755.             adblY,
  756.             ConstructSpecifiedC1Stretch (
  757.                 adblX,
  758.                 adblY,
  759.                 LocalMonotoneCkGenerator.C1_HUYNH_LE_FLOCH,
  760.                 PolynomialSegmentControlParams (
  761.                     iPolyNumBasis,
  762.                     sdic,
  763.                     rssc
  764.                 ),
  765.                 true,
  766.                 true
  767.             )
  768.         );

  769.         /*
  770.          *
  771.          * Hyman 1983 Monotone C1 Basis Spline Stretch Test with Filter
  772.          */

  773.         System.out.println (" \n---------- \n C1 HYMAN 1983 MONOTONE \n ---------- \n");

  774.         C1GeneratedStretchTest (
  775.             adblX,
  776.             adblY,
  777.             ConstructSpecifiedC1Stretch (
  778.                 adblX,
  779.                 adblY,
  780.                 LocalMonotoneCkGenerator.C1_HYMAN83,
  781.                 PolynomialSegmentControlParams (
  782.                     iPolyNumBasis,
  783.                     sdic,
  784.                     rssc
  785.                 ),
  786.                 true,
  787.                 true
  788.             )
  789.         );

  790.         /*
  791.          * Hyman 1989 Monotone C1 Basis Spline Stretch Test with Filter
  792.          */

  793.         System.out.println (" \n---------- \n C1 HYMAN 1989 MONOTONE \n ---------- \n");

  794.         C1GeneratedStretchTest (
  795.             adblX,
  796.             adblY,
  797.             ConstructSpecifiedC1Stretch (
  798.                 adblX,
  799.                 adblY,
  800.                 LocalMonotoneCkGenerator.C1_HYMAN89,
  801.                 PolynomialSegmentControlParams (
  802.                     iPolyNumBasis,
  803.                     sdic,
  804.                     rssc
  805.                 ),
  806.                 true,
  807.                 true
  808.             )
  809.         );

  810.         /*
  811.          * Kruger C1 Basis Spline Stretch Test with Filter
  812.          */

  813.         System.out.println (" \n---------- \n C1 KRUGER STRETCH\n ---------- \n");

  814.         C1GeneratedStretchTest (
  815.             adblX,
  816.             adblY,
  817.             ConstructSpecifiedC1Stretch (
  818.                 adblX,
  819.                 adblY,
  820.                 LocalMonotoneCkGenerator.C1_KRUGER,
  821.                 PolynomialSegmentControlParams (
  822.                     iPolyNumBasis,
  823.                     sdic,
  824.                     rssc
  825.                 ),
  826.                 true,
  827.                 true
  828.             )
  829.         );

  830.         /*
  831.          * Van Leer Limiter Monotone C1 Basis Spline Stretch Test without Filter
  832.          */

  833.         System.out.println (" \n---------- \n C1 VAN LEER LIMITER STRETCH WITHOUT FILTER \n ---------- \n");

  834.         C1GeneratedStretchTest (
  835.             adblX,
  836.             adblY,
  837.             ConstructSpecifiedC1Stretch (
  838.                 adblX,
  839.                 adblY,
  840.                 LocalMonotoneCkGenerator.C1_VAN_LEER,
  841.                 PolynomialSegmentControlParams (
  842.                     iPolyNumBasis,
  843.                     sdic,
  844.                     rssc
  845.                 ),
  846.                 true,
  847.                 false
  848.             )
  849.         );
  850.     }

  851.     public static final void main (
  852.         final String[] astrArgs)
  853.         throws Exception
  854.     {
  855.         StretchEstimationTestSequence();
  856.     }
  857. }