Interface Sequence

All Known Implementing Classes:
LatinHypercube, Saltelli, Sobol, Uniform

public interface Sequence
Interface for generating a sequence of real numbers. The nature of the sequence is specific to the implementation; generated sequences may be deterministic or stochastic, uniform or non-uniform, etc. Refer to the implementing class' documentation for details.
  • Method Summary

    Modifier and Type
    Method
    Description
    double[][]
    generate(int N, int D)
    Returns a N x D matrix of real numbers in the range [0, 1].
  • Method Details

    • generate

      double[][] generate(int N, int D)
      Returns a N x D matrix of real numbers in the range [0, 1].
      Parameters:
      N - the number of sample points
      D - the dimension of each sample point
      Returns:
      a N x D matrix of real numbers in the range [0, 1]