| Package | Description |
|---|---|
| com.opengamma.strata.math.impl.function |
| Modifier and Type | Class and Description |
|---|---|
class |
ConcatenatedVectorFunction
For the set of $k$ vector functions $f_i: \mathbb{R}^{m_i} \to \mathbb{R}^{n_i} \quad x_i \mapsto f_i(x_i) = y_i$
this forms the function
$f: \mathbb{R}^{m} \to \mathbb{R}^{n} \quad x_i \mapsto f(x) = y$ where $n = \sum_{i=1}^k n_i$ and
$m = \sum_{i=1}^k m_i$ and $x = (x_1,x_2,\dots,x_k)$ \& $y = (y_1,y_2,\dots,y_k)$.
|
class |
ParameterizedCurveVectorFunction
This is simply a
VectorFunction backed by a ParameterizedCurve. |
| Modifier and Type | Method and Description |
|---|---|
VectorFunction |
ParameterizedCurveVectorFunctionProvider.from(double[] samplePoints)
Produces a
VectorFunction which builds a ParameterizedCurve from the input vector
(treated as curve parameters), then samples the curve at the smaplePoints, to produce the output vector. |
abstract VectorFunction |
DoublesVectorFunctionProvider.from(double[] x)
Produces a vector function that depends in some way on the given data points.
|
VectorFunction |
DoublesVectorFunctionProvider.from(Double[] x) |
VectorFunction |
DoublesVectorFunctionProvider.from(List<Double> x) |
VectorFunction |
VectorFunctionProvider.from(List<T> samplePoints)
Produces a vector function that maps from some 'model' parameters to values at the sample points.
|
VectorFunction |
VectorFunctionProvider.from(T[] samplePoints)
Produces a vector function that maps from some 'model' parameters to values at the sample points.
|
| Constructor and Description |
|---|
ConcatenatedVectorFunction(VectorFunction[] functions)
Creates an instance.
|
Copyright 2009-Present by OpenGamma Inc. and individual contributors
Apache v2 licensed
Additional documentation can be found at strata.opengamma.io.