Package cern.jet.random

Examples of cern.jet.random.AbstractDistribution


    };
  }

  @Test
  public void testGetSRID() {
    AbstractDistribution one = new Normal(1.0, 0.0, generator);
    AbstractDistribution two = new Normal(1.0, 0.0, generator);
   
    assertEquals(one.nextDouble(), two.nextDouble(), 0.0001);
  }
View Full Code Here

TOP

Related Classes of cern.jet.random.AbstractDistribution

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.