Package org.drip.function.definition
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.
- Module = Computational Core Module
- Library = Numerical Analysis Library
- Project = Rd To Rd Function Analysis
- Package = Function Implementation Ancillary Support Objects
- Author:
- Lakshmi Krishnamurthy
-
Constructor Summary
Constructors Constructor Description VariateOutputPair(double[] adblVariate, double[] adblOutput)
VariateOutputPair Constructor -
Method Summary
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.ExceptionVariateOutputPair Constructor- Parameters:
adblVariate
- Array of VariatesadblOutput
- 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
-