Interface VectorFunctionProvider<T>

    • 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