Interface VectorFunctionProvider<T>
-
- Type Parameters:
T
- the type of extraneous data
- All Known Implementing Classes:
DoublesVectorFunctionProvider
,ParameterizedCurveVectorFunctionProvider
public interface VectorFunctionProvider<T>
Interface for anything the provides a vector function which depends on some extraneous data.- See Also:
VectorFunction
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VectorFunction
from(List<T> samplePoints)
Produces a vector function that maps from some 'model' parameters to values at the sample points.VectorFunction
from(T[] samplePoints)
Produces a vector function that maps from some 'model' parameters to values at the sample points.
-
-
-
Method Detail
-
from
VectorFunction from(List<T> samplePoints)
Produces a vector function that maps from some 'model' parameters to values at the sample points.- Parameters:
samplePoints
- the list of sample points- Returns:
- a
VectorFunction
-
from
VectorFunction from(T[] samplePoints)
Produces a vector function that maps from some 'model' parameters to values at the sample points.- Parameters:
samplePoints
- the array of sample points- Returns:
- a
VectorFunction
-
-