- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
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 TypeMethodDescriptionvoidapply(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 producedu- the input value
-