Class RandNPair

java.lang.Object
org.apache.sysds.runtime.util.RandNPair

public class RandNPair extends Object
Class that generates a pair of random numbers from standard normal distribution N(0,1). Box-Muller method is used to compute random numbers from N(0,1) using two independent random numbers from U[0,1).
  • Constructor Details

    • RandNPair

      public RandNPair()
  • Method Details

    • getFirst

      public double getFirst()
    • getSecond

      public double getSecond()
    • compute

      public void compute(double U1, double U2)
    • compute

      public void compute(Random r)