Class 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 Detail

      • RandNPair

        public RandNPair()
    • Method Detail

      • getFirst

        public double getFirst()
      • getSecond

        public double getSecond()
      • compute

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

        public void compute​(Random r)