Interface RealToVectorMap

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface RealToVectorMap
A mapping from a double-precision number to a vector of double-precision numbers.

This interface is used by the class VectorValuedGLQ.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    apply(double[] results, int m, double u)
    Apply a mapping to an argument u in order to produce multiple, integer-indexed, double-precision values.
  • Method Details

    • apply

      void apply(double[] results, int m, double u)
      Apply a mapping to an argument u in order to produce multiple, integer-indexed, double-precision values.
      Parameters:
      results - the results of the mapping, stored in an array whose length is at least m, starting at index 0.
      m - the number of values produced
      u - the input value