Class VariateOutputPair

java.lang.Object
org.drip.function.definition.VariateOutputPair

public class VariateOutputPair
extends java.lang.Object
VariateOutputPair records the Multidimensional Variate and its corresponding Objective Function Value.

Author:
Lakshmi Krishnamurthy
  • Constructor Summary

    Constructors
    Constructor Description
    VariateOutputPair​(double[] adblVariate, double[] adblOutput)
    VariateOutputPair Constructor
  • Method Summary

    Modifier and Type Method Description
    double[] output()
    Retrieve the Function Output Value Array
    double[] variates()
    Retrieve the Variate Array

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • VariateOutputPair

      public VariateOutputPair​(double[] adblVariate, double[] adblOutput) throws java.lang.Exception
      VariateOutputPair Constructor
      Parameters:
      adblVariate - Array of Variates
      adblOutput - Array of Output
      Throws:
      java.lang.Exception - Thrown if the Inputs are Invalid
  • Method Details

    • variates

      public double[] variates()
      Retrieve the Variate Array
      Returns:
      The Variate Array
    • output

      public double[] output()
      Retrieve the Function Output Value Array
      Returns:
      The Function Output Value Array