de.torstennahm.integrate
Class HaltonGenerator

java.lang.Object
  extended by de.torstennahm.integrate.HaltonGenerator
All Implemented Interfaces:
PointsGenerator

public class HaltonGenerator
extends java.lang.Object
implements PointsGenerator

Generates a Halton series.

Author:
Torsten Nahm

Constructor Summary
HaltonGenerator(de.torstennahm.series.Halton.HaltonType type)
          Construct the generator.
 
Method Summary
 de.torstennahm.series.Series<double[]> makeSeries(int dimension)
          Creates a Series object, which supplies the points.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

HaltonGenerator

public HaltonGenerator(de.torstennahm.series.Halton.HaltonType type)
Construct the generator.

Parameters:
type - type of Halton series as defined in @see de.torstennahm.series.Halton
Method Detail

makeSeries

public de.torstennahm.series.Series<double[]> makeSeries(int dimension)
Description copied from interface: PointsGenerator
Creates a Series object, which supplies the points.

Specified by:
makeSeries in interface PointsGenerator
Parameters:
dimension - dimension of the unit cube from which the points are selected
Returns:
Series iterator
See Also:
Series