Class UniformGenerator

Object
org.apache.spark.mllib.random.UniformGenerator
All Implemented Interfaces:
Serializable, RandomDataGenerator<Object>, Pseudorandom

public class UniformGenerator extends Object implements RandomDataGenerator<Object>
Generates i.i.d. samples from U[0.0, 1.0]
See Also:
  • Constructor Details

    • UniformGenerator

      public UniformGenerator()
  • Method Details

    • copy

      public UniformGenerator copy()
      Description copied from interface: RandomDataGenerator
      Returns a copy of the RandomDataGenerator with a new instance of the rng object used in the class when applicable for non-locking concurrent usage.
      Specified by:
      copy in interface RandomDataGenerator<Object>
      Returns:
      (undocumented)
    • nextValue

      public double nextValue()
      Description copied from interface: RandomDataGenerator
      Returns an i.i.d. sample as a generic type from an underlying distribution.
      Specified by:
      nextValue in interface RandomDataGenerator<Object>
      Returns:
      (undocumented)
    • setSeed

      public void setSeed(long seed)
      Description copied from interface: Pseudorandom
      Set random seed.
      Specified by:
      setSeed in interface Pseudorandom